Sha256: 6e17518e8e4537737c5429a1ac56faaff02a58686a28da267ccdac0ead6539a2
Contents?: true
Size: 1.28 KB
Versions: 5
Compression:
Stored size: 1.28 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 ||= OrganizationPublishedParticipatoryProcesses.new(current_organization) | HighlightedParticipatoryProcesses.new end private def stats @stats ||= HomeStatsPresenter.new(organization: current_organization) end end end
Version data entries
5 entries across 5 versions & 2 rubygems