mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05: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
|