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 key => Account object.
indexes: Index of username => key, email => key, profileUrl => key.
Account object
Schema:
key: String, 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),
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)
}