Sha256: 6612bc631a064a2ae6c726ea728c26a6ca7f89356b031d85fa433739114de811
Contents?: true
Size: 1.31 KB
Versions: 12
Compression:
Stored size: 1.31 KB
Contents
# frozen-string_literal: true module Decidim module Debates # Notifies users about a new debate. Accepts a Hash in the `extra` # field with the key `:type`, which can hold two different values: # # "user" - The event is being sent to the followers of the debate # author # "participatory_space" - The event is being sento to the followers # of the event's participatory space. class CreateDebateEvent < Decidim::Events::SimpleEvent include Decidim::Events::AuthorEvent i18n_attributes :space_title, :space_path delegate :author, to: :resource def resource_text translated_attribute(resource.description) end private def space @space ||= resource.participatory_space end def space_path Decidim::ResourceLocatorPresenter.new(space).path end def space_title space.title.is_a?(Hash) ? space.title[I18n.locale.to_s] : space.title end def i18n_scope @i18n_scope ||= if extra[:type].to_s == "user" "decidim.events.debates.create_debate_event.user_followers" else "decidim.events.debates.create_debate_event.space_followers" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems