mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
15 lines
384 B
Ruby
15 lines
384 B
Ruby
module Jobs
|
|
class CloseTopic < Jobs::Base
|
|
|
|
def execute(args)
|
|
topic = Topic.find(args[:topic_id])
|
|
if topic and topic.auto_close_at and !topic.closed? and !topic.deleted_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
|