class Authegy::User

User

Represents a person which is able to sign-in to the application.
Users are intended for authentification, the actual profile sits in Person.

Public Instance Methods

email=(value) click to toggle source
# File lib/authegy/models/user.rb, line 25
def email=(value)
  return person.email = value if person.present?
  build_person(email: value).email
end