User Model
The User Model represents the structure of an user in festify fest management framework.
User Attributes
Attribute
Data Type
Description
_id
string(ObjectId)
The unique identifier for the user.
name
string
The name of the user.
email
string
The email id of the user
passwordHash
string
The password of the user
role
string(ENUM)
The type of role. Value can contain any one of ["admin", "organiser", "user"].
organisation
string
The name of the organisation the user works for.
Example User Object
Usage
The User Model is used for storing and managing information about different kinds of users within our fest management system.
Last updated
Was this helpful?