Authenticate each request via session

This commit is contained in:
Andrew Tomaka 2024-08-05 21:49:56 -04:00
parent c82a5897d7
commit cb47e6bb73
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
3 changed files with 15 additions and 1 deletions

View file

@ -1,2 +1,9 @@
class ApplicationController < ActionController::Base
before_action :authenticate_user
private
def authenticate_user
Current.user = User.find_by(id: session[:current_user_id])
end
end