Method: Mints::AdminBaseController#mints_user_magic_link_login

Defined in:
lib/mints/controllers/admin_base_controller.rb

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 (hash)
  # Login in mints
  response = @mints_user.(hash)
  if response['data'] && response['data']['redirect_url']
    # Set a cookie with the session token
    cookies[: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