Sha256: 333ef533e24f83ff2a7e2c691125a1b4875984ffa4f78b2f679feda368828987
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 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 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 @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
4 entries across 4 versions & 1 rubygems