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