Class: Decidim::ParticipatoryProcessStepActivatedEvent

Inherits:
Events::SimpleEvent
  • Object
show all
Defined in:
app/events/decidim/participatory_process_step_activated_event.rb

Instance Method Summary collapse

Instance Method Details

#participatory_spaceObject



20
21
22
# File 'app/events/decidim/participatory_process_step_activated_event.rb', line 20

def participatory_space
  resource.participatory_process
end

#resource_pathObject



7
8
9
# File 'app/events/decidim/participatory_process_step_activated_event.rb', line 7

def resource_path
  @resource_path ||= decidim_participatory_processes.participatory_process_path(participatory_space, display_steps: true)
end

#resource_urlObject



11
12
13
14
15
16
17
18
# File 'app/events/decidim/participatory_process_step_activated_event.rb', line 11

def resource_url
  @resource_url ||= decidim_participatory_processes
                    .participatory_process_url(
                      participatory_space,
                      display_steps: true,
                      host: participatory_space.organization.host
                    )
end