-
Notifications
You must be signed in to change notification settings - Fork 2
User object structure
Adrien D. Ahlqvist edited this page Sep 8, 2019
·
7 revisions
This document aims at figuring out how we want to structure our user object in order to limit the amount of changes required later.
let user =
{
id: Number,
email: String,
profilePicture: String,
name: String,
createdOn: Date,
lastLoginDate: Date,
preferences: {
darkTheme: Boolean,
language: String,
tracking: Boolean,
moveEpicsToBacklogAfter: Number
}
}