mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 20:09:45 +08:00
![Sam](/assets/img/avatar_default.png)
introduce new setting email_always, that will force emails to send to users regardless of presence on site
11 lines
216 B
Ruby
11 lines
216 B
Ruby
module Jobs
|
|
# various consistency checks
|
|
class DestroyOldDeletionStubs < Jobs::Scheduled
|
|
recurrence { hourly.minute_of_hour(0, 30) }
|
|
|
|
def execute(args)
|
|
PostDestroyer.destroy_stubs
|
|
end
|
|
end
|
|
end
|