Files
fizzy/gems/fizzy-saas/app/controllers/signup/sessions_controller.rb
T
2025-09-13 16:03:02 -04:00

10 lines
329 B
Ruby

class Signup::SessionsController < Signup::BaseController
def create
if self.authenticated_identity = SignalId::Identity.authenticate(params.permit(:sig))
redirect_to saas.new_signup_completion_url
else
render plain: "Authentication failed. This is probably a bug.", status: :unauthorized
end
end
end