mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
12 lines
221 B
Ruby
12 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpUnsubscribeKeys < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
UnsubscribeKey.where("created_at < ?", 2.months.ago).delete_all
|
|
end
|
|
end
|
|
end
|