Initial commit

This commit is contained in:
Josh Pigford
2024-02-02 09:05:04 -06:00
commit 99de24ac70
147 changed files with 3519 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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