Sha256: e7929ef131cacc1c1d2085c3cfe117729049fc69d14dcc98fccc38acfa015d47
Contents?: true
Size: 899 Bytes
Versions: 28
Compression:
Stored size: 899 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings class UpcomingMeetingEvent < Decidim::Events::BaseEvent include Decidim::Events::EmailEvent include Decidim::Events::NotificationEvent def email_subject I18n.t("decidim.meetings.events.upcoming_meeting_event.email_subject", resource_title: resource_title) end def email_intro I18n.t("decidim.meetings.events.upcoming_meeting_event.email_intro", resource_title: resource_title) end def email_outro I18n.t("decidim.meetings.events.upcoming_meeting_event.email_outro", resource_title: resource_title) end def notification_title I18n.t( "decidim.meetings.events.upcoming_meeting_event.notification_title", resource_title: resource_title, resource_path: resource_path ).html_safe end end end end
Version data entries
28 entries across 28 versions & 2 rubygems