Skip to content

Commit

Permalink
Merge pull request #2565 from scott-ray-wilson/add-project-users-mult…
Browse files Browse the repository at this point in the history
…i-select

Feature: Multi-Select Component and Improve Adding Users to Project
  • Loading branch information
scott-ray-wilson authored Oct 9, 2024
2 parents b482a9c + 529328f commit 2ae91db
Show file tree
Hide file tree
Showing 7 changed files with 393 additions and 211 deletions.
4 changes: 3 additions & 1 deletion backend/src/services/org/org-dal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
205 changes: 166 additions & 39 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"react-mailchimp-subscribe": "^2.1.3",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.2",
"react-select": "^5.8.1",
"react-table": "^7.8.0",
"react-toastify": "^9.1.3",
"sanitize-html": "^2.12.1",
Expand Down
Loading

0 comments on commit 2ae91db

Please sign in to comment.