Admin model class.

const admin = new Admin()
admin.email = "test@example.com"
admin.setPassword(1234567890)

Hierarchy

Implements

Constructors

Methods

  • HasId returns whether the model has a nonzero id.

    Returns boolean

  • IsNew indicates what type of db query (insert or update) should be used with the model instance.

    Returns boolean

  • MarkAsNew marks the model as "new" (aka. enforces m.IsNew() to be true).

    Returns void

  • MarkAsNotNew marks the model as "not new" (aka. enforces m.IsNew() to be false)

    Returns void

  • PostScan implements the [dbx.PostScanner] interface.

    It is executed right after the model was populated with the db row values.

    Returns void

  • RefreshId generates and sets a new model id.

    The generated id is a cryptographically random 15 characters length string.

    Returns void

  • SetId sets the model id to the provided string value.

    Parameters

    • id: string

    Returns void

  • SetPassword sets cryptographically secure string to model.Password.

    Additionally this method also resets the LastResetSentAt and the TokenKey fields.

    Parameters

    • password: string

    Returns void

  • ValidatePassword validates a plain password against the model's password.

    Parameters

    • password: string

    Returns boolean

Properties

avatar: number
created: types.DateTime
email: string
id: string
lastResetSentAt: types.DateTime
passwordHash: string
tokenKey: string
updated: types.DateTime

Generated using TypeDoc