2017-06-25 17:51:32 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-09-26 21:08:19 -04:00
|
|
|
class Vacuum::AccessTokensVacuum
|
|
|
|
def perform
|
|
|
|
vacuum_revoked_access_tokens!
|
|
|
|
vacuum_revoked_access_grants!
|
|
|
|
end
|
2017-06-25 17:51:32 -04:00
|
|
|
|
2022-09-26 21:08:19 -04:00
|
|
|
private
|
2018-08-19 09:48:29 -04:00
|
|
|
|
2022-09-26 21:08:19 -04:00
|
|
|
def vacuum_revoked_access_tokens!
|
2017-06-25 17:51:32 -04:00
|
|
|
Doorkeeper::AccessToken.where('revoked_at IS NOT NULL').where('revoked_at < NOW()').delete_all
|
2022-09-26 21:08:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def vacuum_revoked_access_grants!
|
2017-06-25 17:51:32 -04:00
|
|
|
Doorkeeper::AccessGrant.where('revoked_at IS NOT NULL').where('revoked_at < NOW()').delete_all
|
|
|
|
end
|
|
|
|
end
|