[PR #13] [MERGED] 12 auth implementation #3173

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/13
Author: @timothycarambat
Created: 6/9/2023
Status: Merged
Merged: 6/9/2023
Merged by: @timothycarambat

Base: masterHead: 12-auth-implementation


📝 Commits (3)

  • 3768b60 Add Auth protection for cloud-based or private instances
  • 67db43b skip check on local dev
  • 0f7227d Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 12-auth-implementation

📊 Changes

19 files changed (+429 additions, -26 deletions)

View changed files

📝 frontend/src/components/Modals/MangeWorkspace/CannotRemoveModal/index.jsx (+6 -5)
📝 frontend/src/components/Modals/MangeWorkspace/ConfirmationModal/index.jsx (+1 -1)
📝 frontend/src/components/Modals/MangeWorkspace/Directory/index.jsx (+1 -1)
📝 frontend/src/components/Modals/MangeWorkspace/index.jsx (+5 -5)
frontend/src/components/Modals/Password.jsx (+119 -0)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+3 -2)
frontend/src/components/Sidebar/Placeholder/index.jsx (+134 -0)
📝 frontend/src/models/system.js (+28 -2)
📝 frontend/src/models/workspace.js (+11 -2)
📝 frontend/src/pages/Main/index.jsx (+18 -0)
📝 frontend/src/pages/WorkspaceChat/index.jsx (+22 -0)
frontend/src/utils/request.js (+9 -0)
📝 server/.env.example (+1 -0)
📝 server/endpoints/system.js (+34 -2)
📝 server/index.js (+2 -1)
📝 server/package.json (+1 -0)
📝 server/utils/http/index.js (+20 -0)
📝 server/utils/middleware/validatedRequest.js (+10 -2)
📝 server/utils/vectorDbProviders/lance/index.js (+4 -3)

📄 Description

resolves #12


🔄 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/13 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 6/9/2023 **Status:** ✅ Merged **Merged:** 6/9/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `12-auth-implementation` --- ### 📝 Commits (3) - [`3768b60`](https://github.com/Mintplex-Labs/anything-llm/commit/3768b60bef23f67553b547d3d04b7160c42dda80) Add Auth protection for cloud-based or private instances - [`67db43b`](https://github.com/Mintplex-Labs/anything-llm/commit/67db43b2a6beb3e6b16374c83628a4e21ac57d0a) skip check on local dev - [`0f7227d`](https://github.com/Mintplex-Labs/anything-llm/commit/0f7227d7fed441470f812e67e23814dfed2c0150) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 12-auth-implementation ### 📊 Changes **19 files changed** (+429 additions, -26 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/Modals/MangeWorkspace/CannotRemoveModal/index.jsx` (+6 -5) 📝 `frontend/src/components/Modals/MangeWorkspace/ConfirmationModal/index.jsx` (+1 -1) 📝 `frontend/src/components/Modals/MangeWorkspace/Directory/index.jsx` (+1 -1) 📝 `frontend/src/components/Modals/MangeWorkspace/index.jsx` (+5 -5) ➕ `frontend/src/components/Modals/Password.jsx` (+119 -0) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+3 -2) ➕ `frontend/src/components/Sidebar/Placeholder/index.jsx` (+134 -0) 📝 `frontend/src/models/system.js` (+28 -2) 📝 `frontend/src/models/workspace.js` (+11 -2) 📝 `frontend/src/pages/Main/index.jsx` (+18 -0) 📝 `frontend/src/pages/WorkspaceChat/index.jsx` (+22 -0) ➕ `frontend/src/utils/request.js` (+9 -0) 📝 `server/.env.example` (+1 -0) 📝 `server/endpoints/system.js` (+34 -2) 📝 `server/index.js` (+2 -1) 📝 `server/package.json` (+1 -0) 📝 `server/utils/http/index.js` (+20 -0) 📝 `server/utils/middleware/validatedRequest.js` (+10 -2) 📝 `server/utils/vectorDbProviders/lance/index.js` (+4 -3) </details> ### 📄 Description resolves #12 --- <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:33:11 -05:00
yindo closed this issue 2026-02-22 18:33:11 -05: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#3173