discourse/lib/jobs/close_topic.rb

16 lines
333 B
Ruby
Raw Normal View History

module Jobs
class CloseTopic < Jobs::Base
def execute(args)
topic = Topic.find(args[:topic_id])
if topic.auto_close_at
closer = User.find(args[:user_id])
if Guardian.new(closer).can_moderate?(topic)
topic.update_status('autoclosed', true, closer)
end
end
end
end
end