Files
fizzy/app/controllers/signup/sessions_controller.rb
T
2025-06-20 15:16:57 -04:00

10 lines
324 B
Ruby

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