[PR #990] [MERGED] [FEAT] Implement new workspace members settings and admin users UI updates #3546

Closed
opened 2026-02-22 18:34:00 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/990
Author: @shatfield4
Created: 3/28/2024
Status: Merged
Merged: 4/2/2024
Merged by: @timothycarambat

Base: masterHead: 983-feat-implement-new-workspace-members-and-users-ui


📝 Commits (6)

  • 6391c38 members workspace settings menu and admin users UI updates
  • e422ad4 Merge branch 'master' into 983-feat-implement-new-workspace-members-and-users-ui
  • 3210e7b Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 983-feat-implement-new-workspace-members-and-users-ui
  • 4725c26 change copy/fix admin and managers in workspace when not showing in UI
  • a180128 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 983-feat-implement-new-workspace-members-and-users-ui
  • 12952cc remove existing workspace user mgmt modal

📊 Changes

13 files changed (+353 additions, -176 deletions)

View changed files

📝 frontend/src/models/admin.js (+12 -0)
📝 frontend/src/pages/Admin/Users/UserRow/index.jsx (+4 -5)
📝 frontend/src/pages/Admin/Users/index.jsx (+1 -1)
frontend/src/pages/Admin/Workspaces/WorkspaceRow/EditWorkspaceUsersModal/index.jsx (+0 -149)
📝 frontend/src/pages/Admin/Workspaces/WorkspaceRow/index.jsx (+9 -19)
📝 frontend/src/pages/Admin/Workspaces/index.jsx (+0 -2)
frontend/src/pages/WorkspaceSettings/Members/AddMemberModal/index.jsx (+162 -0)
frontend/src/pages/WorkspaceSettings/Members/WorkspaceMemberRow/index.jsx (+15 -0)
frontend/src/pages/WorkspaceSettings/Members/index.jsx (+97 -0)
📝 frontend/src/pages/WorkspaceSettings/index.jsx (+8 -0)
📝 frontend/src/utils/paths.js (+3 -0)
📝 server/endpoints/admin.js (+15 -0)
📝 server/models/workspace.js (+27 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #983

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Update UI for admin users
  • Implement members workspace settings tab to add users to each workspace

Additional Information

Add any other context about the Pull Request here that was not captured above.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/990 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 3/28/2024 **Status:** ✅ Merged **Merged:** 4/2/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `983-feat-implement-new-workspace-members-and-users-ui` --- ### 📝 Commits (6) - [`6391c38`](https://github.com/Mintplex-Labs/anything-llm/commit/6391c3854b7067a1b19471093f16928afd51223c) members workspace settings menu and admin users UI updates - [`e422ad4`](https://github.com/Mintplex-Labs/anything-llm/commit/e422ad4816534071d0db093e1f284305ca8287a2) Merge branch 'master' into 983-feat-implement-new-workspace-members-and-users-ui - [`3210e7b`](https://github.com/Mintplex-Labs/anything-llm/commit/3210e7b33aa9077fa3021037a40f3996cc0f75d6) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 983-feat-implement-new-workspace-members-and-users-ui - [`4725c26`](https://github.com/Mintplex-Labs/anything-llm/commit/4725c26ad64d75be4e69779202a3e86222ff5dbe) change copy/fix admin and managers in workspace when not showing in UI - [`a180128`](https://github.com/Mintplex-Labs/anything-llm/commit/a1801289794095787c34cc21a79f65fe5eda3e55) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 983-feat-implement-new-workspace-members-and-users-ui - [`12952cc`](https://github.com/Mintplex-Labs/anything-llm/commit/12952cc5899ac538b36c8865e4c83e48954ecaab) remove existing workspace user mgmt modal ### 📊 Changes **13 files changed** (+353 additions, -176 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/models/admin.js` (+12 -0) 📝 `frontend/src/pages/Admin/Users/UserRow/index.jsx` (+4 -5) 📝 `frontend/src/pages/Admin/Users/index.jsx` (+1 -1) ➖ `frontend/src/pages/Admin/Workspaces/WorkspaceRow/EditWorkspaceUsersModal/index.jsx` (+0 -149) 📝 `frontend/src/pages/Admin/Workspaces/WorkspaceRow/index.jsx` (+9 -19) 📝 `frontend/src/pages/Admin/Workspaces/index.jsx` (+0 -2) ➕ `frontend/src/pages/WorkspaceSettings/Members/AddMemberModal/index.jsx` (+162 -0) ➕ `frontend/src/pages/WorkspaceSettings/Members/WorkspaceMemberRow/index.jsx` (+15 -0) ➕ `frontend/src/pages/WorkspaceSettings/Members/index.jsx` (+97 -0) 📝 `frontend/src/pages/WorkspaceSettings/index.jsx` (+8 -0) 📝 `frontend/src/utils/paths.js` (+3 -0) 📝 `server/endpoints/admin.js` (+15 -0) 📝 `server/models/workspace.js` (+27 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #983 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Update UI for admin users - Implement members workspace settings tab to add users to each workspace ### Additional Information Add any other context about the Pull Request here that was not captured above. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:34:00 -05:00
yindo closed this issue 2026-02-22 18:34:00 -05:00
yindo changed title from [PR #990] [FEAT] Implement new workspace members settings and admin users UI updates to [PR #990] [MERGED] [FEAT] Implement new workspace members settings and admin users UI updates 2026-06-05 15:13:59 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3546