7d4da81272
* install rubocop * 1961 automatic rubocop fixes * update rubocop.yml to ignore half of the remaining cops * rubocop lint warnings * random other warnings fixed
10 lines
297 B
Ruby
10 lines
297 B
Ruby
class Events::NewMapping < Event
|
|
# after_create :notify_users!
|
|
|
|
def self.publish!(mapping, user)
|
|
create!(kind: mapping.mappable_type == 'Topic' ? 'topic_added_to_map' : 'synapse_added_to_map',
|
|
eventable: mapping,
|
|
map: mapping.map,
|
|
user: user)
|
|
end
|
|
end
|