Class: Decidim::Accountability::ResultProgressUpdatedEvent

Inherits:
Events::SimpleEvent show all
Defined in:
decidim-accountability/app/events/decidim/accountability/result_progress_updated_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_path, #resource_url

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_path, #resource_title, #resource_url, #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

#progressObject



20
21
22
# File 'decidim-accountability/app/events/decidim/accountability/result_progress_updated_event.rb', line 20

def progress
  extra[:progress]
end

#proposalObject



16
17
18
# File 'decidim-accountability/app/events/decidim/accountability/result_progress_updated_event.rb', line 16

def proposal
  @proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
end

#proposal_pathObject



8
9
10
# File 'decidim-accountability/app/events/decidim/accountability/result_progress_updated_event.rb', line 8

def proposal_path
  @proposal_path ||= Decidim::ResourceLocatorPresenter.new(proposal).path
end

#proposal_titleObject



12
13
14
# File 'decidim-accountability/app/events/decidim/accountability/result_progress_updated_event.rb', line 12

def proposal_title
  @proposal_title ||= translated_attribute(proposal.title)
end

#resource_textObject



24
25
26
# File 'decidim-accountability/app/events/decidim/accountability/result_progress_updated_event.rb', line 24

def resource_text
  translated_attribute(resource.description)
end