Sha256: ec12affc2ef89b1acfbbd3680cb4d049f214345959796c51505e5350491aba51
Contents?: true
Size: 868 Bytes
Versions: 5
Compression:
Stored size: 868 Bytes
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, :stats helper CtaButtonHelper helper Decidim::SanitizeHelper 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 private def stats @stats ||= HomeStatsPresenter.new(organization: current_organization) end end end
Version data entries
5 entries across 5 versions & 1 rubygems