mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
12 lines
185 B
Ruby
12 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpApiKeysMaxLife < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
ApiKey.revoke_max_life_keys!
|
|
end
|
|
end
|
|
end
|