class Doorkeeper::OAuth::ClientCredentialsRequest::Creator

def call(client, scopes, attributes = {})

def call(client, scopes, attributes = {})
  AccessToken.find_or_create_for(
    client, nil, scopes, attributes[:expires_in],
    attributes[:use_refresh_token])
end