1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

update user id generation

This commit is contained in:
Martin McKeaveney 2020-12-04 13:28:19 +00:00
parent f05d696ef7
commit ad4e4e4679

View file

@ -111,11 +111,11 @@ exports.getUserParams = (email = "", otherProps = {}) => {
/**
* Generates a new user ID based on the passed in username.
* @param {string} username The username which the ID is going to be built up of.
* @param {string} email The email which the ID is going to be built up of.
* @returns {string} The new user ID which the user doc can be stored under.
*/
exports.generateUserID = username => {
return `${DocumentTypes.ROW}${SEPARATOR}${ViewNames.USERS}${SEPARATOR}${DocumentTypes.USER}${SEPARATOR}${username}`
exports.generateUserID = email => {
return `${DocumentTypes.ROW}${SEPARATOR}${ViewNames.USERS}${SEPARATOR}${DocumentTypes.USER}${SEPARATOR}${email}`
}
/**