1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 07:39:39 +02:00
This commit is contained in:
Josh Pigford 2024-02-02 10:39:17 -06:00
commit 55c352e8ef
11 changed files with 14 additions and 18 deletions

View file

@ -20,7 +20,7 @@ class ApplicationController < ActionController::Base
def authenticate_user_from_session
User.find_by(id: session[:user_id])
end
end
def user_signed_in?
current_user.present?

View file

@ -1,6 +1,6 @@
class PagesController < ApplicationController
before_action :authenticate_user!
def dashboard
end
end

View file

@ -1,6 +1,6 @@
class PasswordResetsController < ApplicationController
layout "auth"
def new
end
@ -37,4 +37,3 @@ class PasswordResetsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation)
end
end

View file

@ -18,4 +18,3 @@ class PasswordsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "")
end
end

View file

@ -1,6 +1,6 @@
class RegistrationsController < ApplicationController
layout "auth"
def new
@user = User.new
end
@ -27,4 +27,3 @@ class RegistrationsController < ApplicationController
params.require(:user).permit(:name, :email, :password, :password_confirmation)
end
end

View file

@ -1,6 +1,6 @@
class SessionsController < ApplicationController
layout "auth"
def new
end
@ -13,10 +13,9 @@ class SessionsController < ApplicationController
render :new, status: :unprocessable_entity
end
end
def destroy
logout
redirect_to root_path, notice: "You have signed out successfully."
end
end