This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-06-25 23:51:32 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::DoorkeeperCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-19 15:48:29 +02:00
|
|
|
sidekiq_options unique: :until_executed
|
|
|
|
|
2017-06-25 23:51:32 +02:00
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|