mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
13 lines
239 B
Ruby
13 lines
239 B
Ruby
module Jobs
|
|
class CloseTopic < Jobs::Base
|
|
|
|
def execute(args)
|
|
if topic = Topic.where(id: args[:topic_id]).first
|
|
closer = User.where(id: args[:user_id]).first
|
|
topic.auto_close(closer)
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|