mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
1f3c5cb656
automatically delete stubs after 1 day
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
|