Sha256: 9237237318489eb6261cf217574fc5d61da2e0c1869d1a2800e26b3ae9dd7b3a
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true module Decidim module Conferences class RegistrationTypesController < Decidim::Conferences::ApplicationController include ParticipatorySpaceContext participatory_space_layout only: :index helper_method :collection, :conference def index raise ActionController::RoutingError, "No registration types for this conference " if registration_types.empty? && current_participatory_space.registrations_enabled enforce_permission_to :list, :registration_types redirect_to decidim_conferences.conference_path(current_participatory_space) unless current_user_can_visit_space? end private def registration_types @registration_types ||= current_participatory_space.registration_types.published end alias collection registration_types def current_participatory_space return unless params[:conference_slug] @current_participatory_space ||= OrganizationConferences.new(current_organization).query.where(slug: params[:conference_slug]).or( OrganizationConferences.new(current_organization).query.where(id: params[:conference_slug]) ).first! end def conference current_participatory_space end end end end
Version data entries
4 entries across 4 versions & 1 rubygems