Files
x-stake/app/services/auth/profile.rb
2021-08-07 12:46:39 -03:00

16 lines
264 B
Ruby

# frozen_string_literal: true
module Auth
class Profile
attr_reader :id, :email
def initialize(attributes)
@id = attributes[:sub]
@email = attributes[:email]
end
def user
@user ||= User.find_by(email: email)
end
end
end