1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00

Fix registration fails silently when there are errors (#1455)

* Fix registration fails silently with long passwords

* Add maxlength
This commit is contained in:
Tony Vincent 2024-11-11 15:41:17 +01:00 committed by GitHub
parent 31ecd3ccd4
commit 278d04a73a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class RegistrationsController < ApplicationController
@session = create_session_for(@user)
redirect_to root_path, notice: t(".success")
else
render :new, status: :unprocessable_entity
render :new, status: :unprocessable_entity, alert: t(".failure")
end
end