Merge pull request #2565 from scott-ray-wilson/add-project-users-multi-select

Feature: Multi-Select Component and Improve Adding Users to Project
This commit is contained in:
Scott Wilson
2024-10-09 10:45:59 -07:00
committed by GitHub
7 changed files with 394 additions and 212 deletions

View File

@@ -108,7 +108,9 @@ export const orgDALFactory = (db: TDbClient) => {
db.ref("id").withSchema(TableName.Users).as("userId"),
db.ref("publicKey").withSchema(TableName.UserEncryptionKey)
)
.where({ isGhost: false }); // MAKE SURE USER IS NOT A GHOST USER
.where({ isGhost: false }) // MAKE SURE USER IS NOT A GHOST USER
.orderBy("firstName")
.orderBy("lastName");
return members.map(({ email, isEmailVerified, username, firstName, lastName, userId, publicKey, ...data }) => ({
...data,