mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
52c5cf33f8
- Allow revoking keys without deleting them - Auto-revoke keys after a period of no use (default 6 months) - Allow multiple keys per user - Allow attaching a description to each key, for easier auditing - Log changes to keys in the staff action log - Move all key management to one place, and improve the UI
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
|