lib/doorkeeper/orm/mongo_mapper/access_grant.rb



module Doorkeeper
  class AccessGrant
    include MongoMapper::Document

    include AccessGrantMixin

    safe
    timestamps!

    set_collection_name 'oauth_access_grants'

    key :resource_owner_id, ObjectId
    key :application_id,    ObjectId
    key :token,             String
    key :scopes,            String
    key :expires_in,        Integer
    key :redirect_uri,      String
    key :revoked_at,        DateTime

    def self.create_indexes
      ensure_index :token, unique: true
    end
  end
end