Class: Locomotive::Steam::Middlewares::Section

Inherits:
ThreadSafe
  • Object
show all
Includes:
Concerns::Helpers, Concerns::LiquidContext
Defined in:
lib/locomotive/steam/middlewares/section.rb

Constant Summary

Constants included from Concerns::Helpers

Concerns::Helpers::CACHE_HEADERS, Concerns::Helpers::HTML_CONTENT_TYPE, Concerns::Helpers::HTML_MIME_TYPES

Instance Attribute Summary

Attributes inherited from ThreadSafe

#env

Instance Method Summary collapse

Methods included from Concerns::Helpers

#html?, #inject_cookies, #json?, #log, #make_local_path, #modify_path, #mounted_on, #redirect_to, #render_response

Methods inherited from ThreadSafe

#call, #decorate_entry, #default_liquid_context, #default_locale, #liquid_assigns, #locale, #locales, #merge_with_params, #next, #page, #params, #path, #repositories, #request, #services, #session, #site

Instance Method Details

#_callObject



8
9
10
11
12
13
# File 'lib/locomotive/steam/middlewares/section.rb', line 8

def _call
  if section_type = get_section_type
    html = render(section_type)
    render_response(html, 200)
  end
end