Class: Decidim::WelcomeNotificationEvent
Instance Method Summary
collapse
empty_translatable, ensure_translatable, multi_translation, translated_in_current_locale?
#default_locale?
#initialize, #resource_locator, #resource_text, #resource_url, #safe_resource_text, type
Instance Method Details
#body ⇒ Object
18
19
20
|
# File 'app/events/decidim/welcome_notification_event.rb', line 18
def body
interpolate(organization.welcome_notification_body.symbolize_keys[I18n.locale])
end
|
#email_greeting ⇒ Object
26
|
# File 'app/events/decidim/welcome_notification_event.rb', line 26
def email_greeting; end
|
#email_intro ⇒ Object
28
29
30
|
# File 'app/events/decidim/welcome_notification_event.rb', line 28
def email_intro
body
end
|
#email_outro ⇒ Object
32
|
# File 'app/events/decidim/welcome_notification_event.rb', line 32
def email_outro; end
|
#email_subject ⇒ Object
22
23
24
|
# File 'app/events/decidim/welcome_notification_event.rb', line 22
def email_subject
subject
end
|
#notification_title ⇒ Object
34
35
36
|
# File 'app/events/decidim/welcome_notification_event.rb', line 34
def notification_title
("<p><strong>#{subject}</strong></p>" + body).html_safe
end
|
#resource_path ⇒ Object
38
39
40
|
# File 'app/events/decidim/welcome_notification_event.rb', line 38
def resource_path
nil
end
|
#resource_title ⇒ Object
42
43
44
|
# File 'app/events/decidim/welcome_notification_event.rb', line 42
def resource_title
nil
end
|
#subject ⇒ Object
14
15
16
|
# File 'app/events/decidim/welcome_notification_event.rb', line 14
def subject
interpolate(organization.welcome_notification_subject.symbolize_keys[I18n.locale])
end
|