Sha256: 5e436ac36b738ed1f523506b15ab9ec7786c6792cb4773f5565365b3bde272ed
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 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 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
3 entries across 3 versions & 1 rubygems