d16709e8e7
* bunch of code climate fixes * more
14 lines
325 B
Ruby
14 lines
325 B
Ruby
# frozen_string_literal: true
|
|
module Events
|
|
class TopicAddedToMap < Event
|
|
# after_create :notify_users!
|
|
|
|
def self.publish!(topic, map, user, meta)
|
|
create!(kind: 'topic_added_to_map',
|
|
eventable: topic,
|
|
map: map,
|
|
user: user,
|
|
meta: meta)
|
|
end
|
|
end
|
|
end
|