mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:28:59 +08:00
12 lines
247 B
Ruby
12 lines
247 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
|