1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-28 23:09:12 +09:00
whippy-edition/app/workers/scheduler/doorkeeper_cleanup_scheduler.rb

14 lines
408 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Scheduler::DoorkeeperCleanupScheduler
include Sidekiq::Worker
sidekiq_options lock: :until_executed, retry: 0
def perform
Doorkeeper::AccessToken.where('revoked_at IS NOT NULL').where('revoked_at < NOW()').delete_all
Doorkeeper::AccessGrant.where('revoked_at IS NOT NULL').where('revoked_at < NOW()').delete_all
2020-06-03 02:24:53 +09:00
SystemKey.expired.delete_all
end
end