Users can be verified and have a check mark displayed on their profiles

This commit is contained in:
2019-10-31 13:56:40 -04:00
parent 16567e2373
commit ca1d86acf1
2 changed files with 9 additions and 5 deletions

View File

@@ -76,7 +76,8 @@ exports.signup = (req, res) => {
handle: newUser.handle,
createdAt: newUser.createdAt,
userId,
followedTopics: []
followedTopics: [],
verified: false
};
return db.doc(`/users/${newUser.handle}`).set(userCred);
})