1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00

Centralize auth messages (#269)

* Add i18n-tasks

* Add auth-related i18n

* Centralize auth messages

* Remove safe navigation

* Revert "Remove safe navigation"

This reverts commit 56b5e01e5e.

* Remove newline in Gemfile
This commit is contained in:
Jose Farias 2024-02-03 14:17:49 -06:00 committed by GitHub
parent 69698d0463
commit c5192ee424
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 138 additions and 55 deletions

View file

@ -1,6 +1,8 @@
class PasswordResetsController < ApplicationController
layout "auth"
before_action :set_user_by_token, only: :update
def new
end
@ -12,7 +14,7 @@ class PasswordResetsController < ApplicationController
).password_reset.deliver_later
end
redirect_to root_path, notice: "If an account with that email exists, we have sent a link to reset your password."
redirect_to root_path, notice: t(".requested")
end
def edit
@ -20,7 +22,7 @@ class PasswordResetsController < ApplicationController
def update
if @user.update(password_params)
redirect_to new_session_path, notice: "Your password has been reset."
redirect_to new_session_path, notice: t(".success")
else
render :edit, status: :unprocessable_entity
end
@ -30,7 +32,7 @@ class PasswordResetsController < ApplicationController
def set_user_by_token
@user = User.find_by_token_for(password_reset: params[:token])
redirect_to new_password_reset_path, alert: "Invalid token." unless @user.present?
redirect_to new_password_reset_path, alert: t("password_resets.update.invalid_token") unless @user.present?
end
def password_params