mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
15 lines
185 B
Ruby
15 lines
185 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
|
||
|
class CleanUpUnusedApiKeys < ::Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
ApiKey.revoke_unused_keys!
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|