mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
13 lines
249 B
Ruby
13 lines
249 B
Ruby
|
|
module Jobs
|
|
class CloseTopic < Jobs::Base
|
|
|
|
def execute(args)
|
|
# 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
|
|
end
|