Method: Mints::AdminBaseController#mints_user_magic_link_login
- Defined in:
- lib/mints/controllers/admin_base_controller.rb
#mints_user_magic_link_login(hash) ⇒ Object
Mints user Login.
Starts a user session in mints.cloud and set a session cookie
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/mints/controllers/admin_base_controller.rb', line 31 def mints_user_magic_link_login(hash) # Login in mints response = @mints_user.magic_link_login(hash) if response['data'] && response['data']['redirect_url'] # Set a cookie with the session token [:mints_user_session_token] = { value: response['data']['api_token'], expires: 1.day, secure: true, httponly: true } redirect_to response['data']['redirect_url'] else redirect_to '/' end end |