mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-28 15:01:26 +08:00
11 lines
185 B
Ruby
Vendored
11 lines
185 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpApiKeysMaxLife < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
ApiKey.revoke_max_life_keys!
|
|
end
|
|
end
|
|
end
|