2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

Add topic status_update change event

This commit is contained in:
Joe Buhlig 2016-02-24 08:59:06 -06:00
parent c3a393a11f
commit 770d38d025

View file

@ -433,6 +433,7 @@ class Topic < ActiveRecord::Base
def update_status(status, enabled, user, opts={}) def update_status(status, enabled, user, opts={})
TopicStatusUpdate.new(self, user).update!(status, enabled, opts) TopicStatusUpdate.new(self, user).update!(status, enabled, opts)
DiscourseEvent.trigger(:topic_status_updated, self.id, status, enabled)
end end
# Atomically creates the next post number # Atomically creates the next post number