Class: Decidim::Votings::PollingOfficers::PollingStationAssignedEvent

Inherits:
Events::SimpleEvent show all
Defined in:
decidim-elections/app/events/decidim/votings/polling_officers/polling_station_assigned_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_text, #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_text, #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

#polling_officer_zone_urlObject



18
19
20
# File 'decidim-elections/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb', line 18

def polling_officer_zone_url
  url_helpers.decidim_votings_polling_officer_zone_url(host: organization.host)
end

#polling_station_nameObject



14
15
16
# File 'decidim-elections/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb', line 14

def polling_station_name
  @polling_station_name ||= translated_attribute(polling_station.title)
end

#roleObject



22
23
24
# File 'decidim-elections/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb', line 22

def role
  I18n.t(polling_officer.role, scope: "decidim.votings.polling_officers.roles")
end