Make CloseTopic a no-op just in case

This commit is contained in:
Robin Ward 2017-05-09 15:02:05 -04:00
parent 24e1892d28
commit c2bf525a06
1 changed files with 3 additions and 11 deletions

View File

@ -1,19 +1,11 @@
# This file is back temporarily to handle jobs that are enqueued
# far in the future that haven't been migrated to the ToggleTopicClosed
# job.
module Jobs
class CloseTopic < Jobs::Base
def execute(args)
if topic = Topic.find_by(id: args[:topic_id])
closer = User.find_by(id: args[:user_id])
guardian = Guardian.new(closer)
unless guardian.can_close?(topic)
closer = Discourse.system_user
end
topic.auto_close(closer)
end
# This file is back temporarily to handle jobs that are enqueued
# far in the future that haven't been migrated to the ToggleTopicClosed
# job.
end
end