Sha256: 6486198c61b93f5fde7b0bc4bcb52008adc4b9125ea158ab979213c27ba3873e
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true require_dependency "decidim/page_finder" module Decidim # This controller serves static pages using HighVoltage. class PagesController < Decidim::ApplicationController include HighVoltage::StaticPage layout "layouts/decidim/application" authorize_resource :public_pages, class: false delegate :page, to: :page_finder helper_method :page, :promoted_participatory_processes, :highlighted_participatory_processes, :stats def index @pages = current_organization.static_pages.all.to_a.sort do |a, b| a.title[I18n.locale.to_s] <=> b.title[I18n.locale.to_s] end end def page_finder @page_finder ||= Decidim::PageFinder.new(params[:id], current_organization) end def promoted_participatory_processes @promoted_participatory_processes ||= OrganizationPrioritizedParticipatoryProcesses.new(current_organization) | PromotedParticipatoryProcesses.new end def highlighted_participatory_processes @highlighted_participatory_processes ||= OrganizationParticipatoryProcesses.new(current_organization) | HighlightedParticipatoryProcesses.new end private def stats @stats ||= HomeStatsPresenter.new(organization: current_organization) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
decidim-core-0.4.3 | app/controllers/decidim/pages_controller.rb |