class Doorkeeper::Orm::ActiveRecord::StaleRecordsCleaner
Used by Doorkeeper Rake tasks.
Helper class to clear stale and non-active tokens and grants.
def clean_expired(ttl)
def clean_expired(ttl) table = @base_scope.arel_table @base_scope .where.not(expires_in: nil) .where(table[:created_at].lt(Time.current - ttl)) .in_batches(&:delete_all) end
def clean_revoked
def clean_revoked table = @base_scope.arel_table @base_scope .where.not(revoked_at: nil) .where(table[:revoked_at].lt(Time.current)) .in_batches(&:delete_all) end
def initialize(base_scope)
def initialize(base_scope) @base_scope = base_scope end