diff --git a/packages/server/src/db/utils.js b/packages/server/src/db/utils.js index 1f347fe7af..02ffd5019c 100644 --- a/packages/server/src/db/utils.js +++ b/packages/server/src/db/utils.js @@ -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}` } /**