Sha256: c38f7887a3d4d2c57058cb761c593bef7d0ca61fa9393c2463140f77021898e7
Contents?: true
Size: 1.27 KB
Versions: 28
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true module Decidim module Votings module Admin # Controller that allows to (de)activate the content blocks from a voting landing page class VotingsLandingPageController < Decidim::Votings::Admin::ApplicationController include Decidim::Admin::LandingPage layout "decidim/admin/voting" helper_method :current_participatory_space def content_block_scope :voting_landing_page end def scoped_resource @scoped_resource ||= Voting.find_by(slug: params[:voting_slug]) end def enforce_permission_to_update_resource enforce_permission_to :manage_landing_page, :voting, voting: scoped_resource end def resource_sort_url voting_landing_page_path(scoped_resource) end def active_content_blocks_title t("landing_page.edit.active_content_blocks", scope: "decidim.votings.admin") end def inactive_content_blocks_title t("landing_page.edit.inactive_content_blocks", scope: "decidim.votings.admin") end def resource_content_block_cell "decidim/votings/content_block" end alias current_participatory_space scoped_resource end end end end
Version data entries
28 entries across 28 versions & 1 rubygems