mirror of
https://github.com/discourse/discourse.git
synced 2026-08-27 05:37:29 -05: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
|