mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
21 lines
490 B
Ruby
21 lines
490 B
Ruby
|
class PasswordsController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def edit
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
if current_user.update(password_params)
|
||
|
redirect_to root_path, notice: "Your password has been updated successfully."
|
||
|
else
|
||
|
render :edit, status: :unprocessable_entity
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def password_params
|
||
|
params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "")
|
||
|
end
|
||
|
end
|