You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
Paul Frazee edited this page Jan 4, 2017
·
21 revisions
Layout
main
accounts: Map of id => Account object.
indexes: Index of username => id, email => id, profileUrl => id.
Account object
Schema:
{
id: String, the assigned uuid
username: String, the chosen username
passwordHash: String, hashed password
passwordSalt: String, salt used on hashed password
email: String
profileURL: String, the url of the profile dat
scopes: Array(String),
updatedAt: Number, the timestamp of the last update
createdAt: Number, the timestamp of creation time
isEmailVerified: Boolean
emailVerifyNonce: String, the random verification nonce
isProfileDatVerified: Boolean
profileVerifyToken: String, the profile verification token (stored so the user can refetch it)
}