Sha256: 4f4bf7f0e7da87c08d59d791a9578158297b771cd0a84797ed01e98e1b3c251f
Contents?: true
Size: 1.41 KB
Versions: 5
Compression:
Stored size: 1.41 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::ContentBlocks::LandingPage include Decidim::Admin::ParticipatorySpaceAdminBreadcrumb layout "decidim/admin/voting" helper_method :current_participatory_space add_breadcrumb_item_from_menu :admin_voting_menu def content_block_scope :voting_landing_page end def scoped_resource @scoped_resource ||= Voting.find_by(slug: params[:voting_slug], organization: current_organization) 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 resource_create_url(manifest_name) voting_landing_page_content_blocks_path(participatory_process_group_id: params[:participatory_process_group_id], manifest_name:) end def resource_content_block_cell "decidim/votings/content_block" end alias current_participatory_space scoped_resource end end end end
Version data entries
5 entries across 5 versions & 1 rubygems