mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
14 lines
193 B
Ruby
14 lines
193 B
Ruby
|
module Jobs
|
||
|
|
||
|
class CleanUpDigestKeys < Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
DigestUnsubscribeKey.where('created_at < ?', 2.months.ago).delete_all
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|