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

14 lines
387 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
desc "rebuild the user_actions table"
task "user_actions:rebuild" => :environment do
o = UserActionObserver.send :new
MessageBus.off
UserAction.delete_all
PostAction.all.each{|i| o.after_save(i)}
Topic.all.each {|i| o.after_save(i)}
Post.all.each {|i| o.after_save(i)}
Notification.all.each {|i| o.after_save(i)}
# not really needed but who knows
MessageBus.on
end