Sha256: f8849be0bce3901d9f082b4318590bc4c075c2d099f7faad56a893e680be67d2
Contents?: true
Size: 1.31 KB
Versions: 6
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true require_dependency "decidim/application_controller" require_dependency "decidim/page_finder" module Decidim # This controller serves static pages using HighVoltage. class PagesController < 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
6 entries across 6 versions & 1 rubygems