Module: Immunio::TemplateRendererHooks

Extended by:
ActiveSupport::Concern
Defined in:
lib/immunio/plugins/action_view/template_rendering.rb

Overview

Hook for the ‘ActionView::TemplateRenderer`. These are called for root templates.

Instance Method Summary collapse

Instance Method Details

#render_template_with_immunio(template, *args) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/immunio/plugins/action_view/template_rendering.rb', line 11

def render_template_with_immunio(template, *args)
  Request.time "plugin", "#{Module.nesting[0]}::#{__method__}" do
    renderer = Template.new(template)

    renderer.render @view do
      Request.pause "plugin", "#{Module.nesting[0]}::#{__method__}" do
        render_template_without_immunio(template, *args)
      end
    end
  end
end