mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Minimal code style enforcement * Formatting and lint code updates (no change in functionality)
18 lines
426 B
Ruby
18 lines
426 B
Ruby
class PasswordsController < ApplicationController
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
if Current.user.update(password_params)
|
|
redirect_to root_path, notice: t(".success")
|
|
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
|