Sha256: bacc623a3d02f904acacdef118cf9127b25b5fe3a030ae3c88a2e8fb9718d045
Contents?: true
Size: 979 Bytes
Versions: 4
Compression:
Stored size: 979 Bytes
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 def resource_text translated_attribute(resource.description) end private 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
4 entries across 4 versions & 1 rubygems