Create fake model for session

This commit is contained in:
Andrew Tomaka 2024-08-01 21:33:02 -04:00
parent a70c656690
commit a3a09e845f
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
3 changed files with 48 additions and 0 deletions

22
app/models/session.rb Normal file
View file

@ -0,0 +1,22 @@
class Session
include ActiveModel::Model
include ActiveModel::Attributes
include ActiveModel::Validations
attr_accessor :user_id
attribute :email, :string
attribute :password, :string
validates :email, presence: true
validates :password, presence: true
def save
user = User.authenticate_by(email: email, password: password)
@user_id = user && user.id
user.present? && self || nil
end
end