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.

Author:

Instance Attribute Summary collapse

Instance Attribute Details

#authorizationArkaan::OAuth::Authorization

Returns the authorization code that issued this token to the application for this user.

Returns:



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

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

#valueString

Returns the value of the token, returned to the application when built.

Returns:

  • (String)

    the value of the token, returned to the application when built.



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

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