class GrapeDeviseTokenAuth::Configuration
Constants
- ACCESS_TOKEN_KEY
- CLIENT_KEY
- EXPIRY_KEY
- UID_KEY
Attributes
authenticate_all[RW]
batch_request_buffer_throttle[RW]
change_headers_on_each_request[RW]
Public Class Methods
new()
click to toggle source
# File lib/grape_devise_token_auth/configuration.rb, line 9 def initialize @batch_request_buffer_throttle ||= DeviseTokenAuth.batch_request_buffer_throttle @change_headers_on_each_request ||= DeviseTokenAuth.change_headers_on_each_request @authenticate_all = false end
Public Instance Methods
auth_all?()
click to toggle source
# File lib/grape_devise_token_auth/configuration.rb, line 15 def auth_all? @authenticate_all end