Class: Decidim::Conferences::RegistrationTypesController

Inherits:
ApplicationController show all
Includes:
ParticipatorySpaceContext
Defined in:
app/controllers/decidim/conferences/registration_types_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject

Raises:

  • (ActionController::RoutingError)


12
13
14
15
16
17
# File 'app/controllers/decidim/conferences/registration_types_controller.rb', line 12

def index
  raise ActionController::RoutingError, "No registration types for this conference " if registration_types.empty? && current_participatory_space.registrations_enabled.empty?

  enforce_permission_to :list, :registration_types
  redirect_to decidim_conferences.conference_path(current_participatory_space) unless current_user_can_visit_space?
end