mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:34:09 +08:00
15 lines
274 B
Ruby
15 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpEmailTokens < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
EmailToken
|
|
.where('NOT confirmed AND expired')
|
|
.where('created_at < ?', 1.month.ago)
|
|
.delete_all
|
|
end
|
|
end
|
|
end
|