Sha256: ebff4b9bea317e35d132b40cf68c0b9d9720032732a9be8fe318c9638f90a5ed
Contents?: true
Size: 805 Bytes
Versions: 2
Compression:
Stored size: 805 Bytes
Contents
# frozen_string_literal: true class ::Tramway::Page::PagesController < ::Tramway::Page::ApplicationController layout 'tramway/landing/application' def show @page = ::Tramway::Page::Page.published.find_by slug: params[:slug] @blocks = @page.blocks.published.map do |block| if block.block_type.header_with_form? && block.form_url.present? # FIXME: in future @header_with_form = block.form_to_render.new(Tramway::Auth.authenticable_models.first.new, page: @page.id) end if block.block_type.in? %i[header header_with_form] @links = Tramway::Landing::BlockLinkDecorator.decorate @page.with_navbar_link.active end ::Tramway::Landing::BlockDecorator.decorate block end render(layout: false) if @page.page_type.without_layout? end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tramway-page-1.6.0.1 | app/controllers/tramway/page/pages_controller.rb |
tramway-page-1.6 | app/controllers/tramway/page/pages_controller.rb |