mirror of
https://github.com/discourse/discourse.git
synced 2025-02-23 18:50:55 +08:00
9 lines
162 B
Ruby
9 lines
162 B
Ruby
module Jobs
|
|
# various consistency checks
|
|
class DestroyOldDeletionStubs < Jobs::Base
|
|
def execute(args)
|
|
PostDestroyer.destroy_stubs
|
|
end
|
|
end
|
|
end
|