class Doorkeeper::SecretStoring::Base

def self.validate_for(model)

Determines what secrets this strategy is applicable for
#
def self.validate_for(model)
  valid = %i[token application]
  return true if valid.include?(model.to_sym)
  raise ArgumentError, "'#{name}' can not be used for #{model}."
end