Sha256: 32298903187b9dfb30d5bbc94834deee826efed758cbf3fc1452107bf86e88d8

Contents?: true

Size: 765 Bytes

Versions: 37

Compression:

Stored size: 765 Bytes

Contents

# frozen-string_literal: true

module Decidim
  module Elections
    module Trustees
      class NotifyNewTrusteeEvent < Decidim::Events::SimpleEvent
        # This event sends a notification when a new trustee gets created.

        delegate :organization, to: :user, prefix: false
        delegate :url_helpers, to: "Decidim::Core::Engine.routes"

        i18n_attributes :resource_name, :trustee_zone_url

        def resource_name
          @resource_name ||= translated_attribute(participatory_space.title)
        end

        def participatory_space
          @participatory_space ||= resource
        end

        def trustee_zone_url
          url_helpers.decidim_elections_trustee_zone_url(host: organization.host)
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
decidim-elections-0.27.9 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.8 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.7 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.6 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.10 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.9 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.5 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.8 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.4 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.3 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.7 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.5 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.2 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.1 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.4 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.0 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.3 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.0.rc2 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.27.0.rc1 app/events/decidim/elections/trustees/notify_new_trustee_event.rb
decidim-elections-0.26.2 app/events/decidim/elections/trustees/notify_new_trustee_event.rb