require 'doorkeeper/models/mongoid/scopes' require 'doorkeeper/models/mongoid/version' module Doorkeeper class AccessGrant include Mongoid::Document include Mongoid::Timestamps include Models::Mongoid::Scopes extend Models::Mongoid::Version self.store_in collection: :oauth_access_grants if defined?(Moped::BSON) field :resource_owner_id, type: Moped::BSON::ObjectId else field :resource_owner_id, type: BSON::ObjectId end field :application_id, type: Hash field :token, type: String field :expires_in, type: Integer field :redirect_uri, type: String field :revoked_at, type: DateTime index({ token: 1 }, { unique: true }) end end