[PR #3799] [CLOSED] Custom Roles & Perms - RBAC #4407

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3799
Author: @timothycarambat
Created: 5/10/2025
Status: Closed

Base: masterHead: 1787-custom-roles-and-permissions


📝 Commits (5)

📊 Changes

29 files changed (+1344 additions, -323 deletions)

View changed files

extras/scripts/validateRoles.mjs (+165 -0)
📝 server/endpoints/admin.js (+19 -24)
📝 server/endpoints/agentFlows.js (+6 -43)
📝 server/endpoints/browserExtension.js (+16 -16)
📝 server/endpoints/chat.js (+7 -6)
📝 server/endpoints/communityHub.js (+16 -11)
📝 server/endpoints/document.js (+3 -6)
📝 server/endpoints/embedManagement.js (+19 -10)
📝 server/endpoints/experimental/imported-agent-plugins.js (+4 -7)
📝 server/endpoints/experimental/liveSync.js (+4 -7)
📝 server/endpoints/extensions/index.js (+7 -10)
📝 server/endpoints/mcpServers.js (+5 -8)
📝 server/endpoints/system.js (+46 -33)
📝 server/endpoints/workspaceThreads.js (+21 -12)
📝 server/endpoints/workspaces.js (+63 -32)
📝 server/index.js (+2 -0)
📝 server/models/browserExtensionApiKey.js (+8 -4)
📝 server/models/user.js (+7 -3)
📝 server/models/workspace.js (+9 -5)
📝 server/package.json (+2 -1)

...and 9 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1787

What is in this change?

Additional Information

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/3799 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 5/10/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `1787-custom-roles-and-permissions` --- ### 📝 Commits (5) - [`4cb8e68`](https://github.com/Mintplex-Labs/anything-llm/commit/4cb8e684040ab29ef25a86941143f9825fefaf83) Custom Roles & Perms - RBAC WIP - [`f42d415`](https://github.com/Mintplex-Labs/anything-llm/commit/f42d4156d20683061e8ce29e1e6c4ee2dfcf2698) fix user pfp role - [`5a15fa2`](https://github.com/Mintplex-Labs/anything-llm/commit/5a15fa2e81189ecfd64db535db8de20e2e4d9f1c) patch MCP method - [`3ace850`](https://github.com/Mintplex-Labs/anything-llm/commit/3ace850e8f990e490e0337b8f3093220adc53da1) basic role migration - [`b1270f3`](https://github.com/Mintplex-Labs/anything-llm/commit/b1270f36cc4f476c788d888151fe847c982bf307) default role map ### 📊 Changes **29 files changed** (+1344 additions, -323 deletions) <details> <summary>View changed files</summary> ➕ `extras/scripts/validateRoles.mjs` (+165 -0) 📝 `server/endpoints/admin.js` (+19 -24) 📝 `server/endpoints/agentFlows.js` (+6 -43) 📝 `server/endpoints/browserExtension.js` (+16 -16) 📝 `server/endpoints/chat.js` (+7 -6) 📝 `server/endpoints/communityHub.js` (+16 -11) 📝 `server/endpoints/document.js` (+3 -6) 📝 `server/endpoints/embedManagement.js` (+19 -10) 📝 `server/endpoints/experimental/imported-agent-plugins.js` (+4 -7) 📝 `server/endpoints/experimental/liveSync.js` (+4 -7) 📝 `server/endpoints/extensions/index.js` (+7 -10) 📝 `server/endpoints/mcpServers.js` (+5 -8) 📝 `server/endpoints/system.js` (+46 -33) 📝 `server/endpoints/workspaceThreads.js` (+21 -12) 📝 `server/endpoints/workspaces.js` (+63 -32) 📝 `server/index.js` (+2 -0) 📝 `server/models/browserExtensionApiKey.js` (+8 -4) 📝 `server/models/user.js` (+7 -3) 📝 `server/models/workspace.js` (+9 -5) 📝 `server/package.json` (+2 -1) _...and 9 more files_ </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 #1787 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> ### 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. --> - [ ] 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 --- <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:35:46 -05:00
yindo changed title from [PR #3799] Custom Roles & Perms - RBAC to [PR #3799] [CLOSED] Custom Roles & Perms - RBAC 2026-06-05 15:18:25 -04:00
yindo closed this issue 2026-06-05 15:18:25 -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#4407