Class: Decidim::ParticipatoryProcesses::ParticipatoryProcessesController

Inherits:
ApplicationController
  • Object
show all
Includes:
FilterResource, ParticipatorySpaceContext
Defined in:
app/controllers/decidim/participatory_processes/participatory_processes_controller.rb

Overview

A controller that holds the logic to show ParticipatoryProcesses in a public layout.

Instance Method Summary collapse

Instance Method Details

#all_metricsObject



33
34
35
36
37
38
39
# File 'app/controllers/decidim/participatory_processes/participatory_processes_controller.rb', line 33

def all_metrics
  if current_participatory_space.show_statistics
    enforce_permission_to :read, :process, process: current_participatory_space
  else
    render status: :not_found
  end
end

#indexObject

Raises:

  • (ActionController::RoutingError)


22
23
24
25
26
27
# File 'app/controllers/decidim/participatory_processes/participatory_processes_controller.rb', line 22

def index
  raise ActionController::RoutingError, "Not Found" if published_processes.none?

  enforce_permission_to :list, :process
  enforce_permission_to :list, :process_group
end

#showObject



29
30
31
# File 'app/controllers/decidim/participatory_processes/participatory_processes_controller.rb', line 29

def show
  enforce_permission_to :read, :process, process: current_participatory_space
end