def self.primary_key_name : Symbol | Nil
#
class User
Included Modules
- Authentic::PasswordAuthenticatable
- Avram::PrimaryKeyMethods
- Carbon::Emailable
- DB::Mappable
- LuckyCache::Cachable
- Users::EmailConfirmable
Defined in:
models/user.crConstant Summary
-
ASSOCIATIONS =
[] of Nil
-
COLUMNS =
[{name: confirmed_at, type: Time, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: confirmation_token, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: id, type: UUID, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: email, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: first_name, type: String, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: last_name, type: String, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: encrypted_password, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
UUID
Constructors
- .new(confirmed_at : Time | Nil, confirmation_token : String, id : UUID, created_at : Time, updated_at : Time, email : String, first_name : Nil | String, last_name : Nil | String, encrypted_password : String)
- .new(__temp_111 : DB::ResultSet)
Class Method Summary
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_111 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::User::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #confirmation_token : String
- #confirmation_token=(_confirmation_token : String::Lucky::ColumnType)
- #confirmed_at : Time | Nil
- #confirmed_at=(_confirmed_at : Time::Lucky::ColumnType | Nil)
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::User::DeleteOperation.class
- #email : String
- #email=(_email : String::Lucky::ColumnType)
- #emailable : Carbon::Address
- #encrypted_password : String
- #encrypted_password=(_encrypted_password : String::Lucky::ColumnType)
- #first_name : String | Nil
- #first_name=(_first_name : String::Lucky::ColumnType | Nil)
- #full_name : String | Nil
- #id : UUID
- #id=(_id : UUID::Lucky::ColumnType)
-
#image(size : Number = 100) : String
Show Gravatar images by default for users.
- #last_name : String | Nil
- #last_name=(_last_name : String::Lucky::ColumnType | Nil)
- #save_operation_class : ::User::SaveOperation.class
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
Instance methods inherited from module Users::EmailConfirmable
confirmed?
confirmed?,
unconfirmed?
unconfirmed?
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
def self.new(confirmed_at : Time | Nil, confirmation_token : String, id : UUID, created_at : Time, updated_at : Time, email : String, first_name : Nil | String, last_name : Nil | String, encrypted_password : String)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation
def image(size : Number = 100) : String
#
Show Gravatar images by default for users.
If there is another potential source, you can select among them in this method.