mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
13 lines
225 B
Ruby
13 lines
225 B
Ruby
module Jobs
|
|
|
|
class CleanUpDigestKeys < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
# Remove unused digest keys
|
|
DigestUnsubscribeKey.where('created_at < ?', 2.months.ago).delete_all
|
|
end
|
|
end
|
|
|
|
end
|