d41d50d52b
and some other de-tenant changes, including removing the controller tenanting concerns
24 lines
563 B
Ruby
24 lines
563 B
Ruby
class Sessions::MagicLinksController < ApplicationController
|
|
require_unauthenticated_access
|
|
rate_limit to: 10, within: 15.minutes, only: :create, with: -> { redirect_to session_magic_link_path, alert: "Try again in 15 minutes." }
|
|
|
|
layout "public"
|
|
|
|
def show
|
|
end
|
|
|
|
def create
|
|
if identity = MagicLink.consume(code)
|
|
start_new_session_for identity
|
|
redirect_to after_authentication_url
|
|
else
|
|
redirect_to session_magic_link_path, alert: "Try another code."
|
|
end
|
|
end
|
|
|
|
private
|
|
def code
|
|
params.expect(:code)
|
|
end
|
|
end
|