0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-09 21:45:25 +08:00
discourse/app/jobs/scheduled/clean_up_unused_api_keys.rb
2023-01-09 14:14:59 +00:00

11 lines
182 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
class CleanUpUnusedApiKeys < ::Jobs::Scheduled
every 1.day
def execute(args)
ApiKey.revoke_unused_keys!
end
end
end