Class: Arkaan::OAuth::RefreshToken

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document, Mongoid::Timestamps
Defined in:
lib/arkaan/oauth/refresh_token.rb

Overview

A refresh token is used when an access token is expired, to get a new one. It is then recreated for the next expiration.

Instance Attribute Summary collapse

Instance Attribute Details

#authorizationArkaan::OAuth::Authorization



15
# File 'lib/arkaan/oauth/refresh_token.rb', line 15

belongs_to :authorization, class_name: 'Arkaan::OAuth::Authorization', inverse_of: :refresh_token

#valueString



11
# File 'lib/arkaan/oauth/refresh_token.rb', line 11

field :value, type: String, default: ->{ SecureRandom.hex }