Class: Decidim::ParticipatoryProcessStepChangedEvent

Inherits:
Events::SimpleEvent show all
Defined in:
decidim-participatory_processes/app/events/decidim/participatory_process_step_changed_event.rb

Instance Method Summary collapse

Methods inherited from Events::SimpleEvent

#email_intro, #email_outro, #email_subject, #email_subject_i18n_options, #event_has_roles?, i18n_attributes, #i18n_options, #i18n_scope, #notification_title, #participatory_space_url, #resource_text

Methods included from SanitizeHelper

#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_admin, #decidim_sanitize_editor, #decidim_sanitize_editor_admin, #decidim_sanitize_newsletter, #decidim_url_escape, included

Methods included from ComponentPathHelper

#can_be_managed?, #main_component_path, #main_component_url, #manage_component_path

Methods inherited from Events::BaseEvent

#content_in_same_language?, #initialize, #organization, #perform_translation?, #resource_locator, #resource_text, #resource_title, #safe_resource_text, #safe_resource_translated_text, #translation_missing?, type

Methods included from TranslatableAttributes

#default_locale?

Constructor Details

This class inherits a constructor from Decidim::Events::BaseEvent

Instance Method Details

#participatory_spaceObject



20
21
22
# File 'decidim-participatory_processes/app/events/decidim/participatory_process_step_changed_event.rb', line 20

def participatory_space
  resource.participatory_process
end

#resource_pathObject



7
8
9
# File 'decidim-participatory_processes/app/events/decidim/participatory_process_step_changed_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 'decidim-participatory_processes/app/events/decidim/participatory_process_step_changed_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