Class: Devise::NoncesController

Inherits:
DeviseController
  • Object
show all
Defined in:
app/controllers/devise/nonces_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



4
5
6
7
# File 'app/controllers/devise/nonces_controller.rb', line 4

def show
  nonce, nonce_id = redis_store.generate_nonce_with_id
  render json: { nonce: nonce, nonce_id: nonce_id }
end