[PR #2891] [CLOSED] Sync fork 202412 #4166

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2891
Author: @ariyanki
Created: 12/23/2024
Status: Closed

Base: masterHead: sync-fork-202412


📝 Commits (10+)

  • df105b6 224-incorporate-sso-into-anythingllm
  • dcb7cc9 224-incorporate-sso-into-anythingllm
  • 90c15a1 224-incorporate-sso-into-anythingllm
  • 564c957 224-incorporate-sso-into-anythingllm
  • ff0a462 224-incorporate-sso-into-anythingllm
  • ef55eb2 224-incorporate-sso-into-anythingllm
  • ed0def7 224-incorporate-sso-into-anythingllm
  • d0b2b7e 224-incorporate-sso-into-anythingllm
  • 116487a 224-incorporate-sso-into-anythingllm
  • bde0e32 224-incorporate-sso-into-anythingllm

📊 Changes

37 files changed (+3350 additions, -42 deletions)

View changed files

📝 .vscode/settings.json (+2 -0)
📝 docker/.env.example (+9 -0)
📝 docker/Dockerfile (+2 -1)
docker/Dockerfile-backend (+160 -0)
docker/Dockerfile-frontend (+26 -0)
docker/nginx/nginx.conf (+21 -0)
📝 frontend/package.json (+3 -0)
📝 frontend/public/embed/anythingllm-chat-widget.min.js (+1 -1)
📝 frontend/src/AuthContext.jsx (+52 -6)
frontend/src/components/Modals/Password/AzureAuthProviders.jsx (+86 -0)
📝 frontend/src/components/Modals/Password/MultiUserAuth.jsx (+7 -0)
frontend/src/media/logo/microsoft-login.png (+0 -0)
📝 frontend/src/models/system.js (+26 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx (+2 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx (+133 -7)
frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/snowflake.png (+0 -0)
frontend/src/pages/Admin/System/index.jsx (+128 -0)
frontend/src/pages/FineTuning/Steps/Confirmation/index.jsx (+178 -0)
frontend/src/pages/FineTuning/Steps/OrderPlaced/index.jsx (+83 -0)
📝 frontend/src/pages/GeneralSettings/EmbedChats/index.jsx (+32 -0)

...and 17 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

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/2891 **Author:** [@ariyanki](https://github.com/ariyanki) **Created:** 12/23/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `sync-fork-202412` --- ### 📝 Commits (10+) - [`df105b6`](https://github.com/Mintplex-Labs/anything-llm/commit/df105b63e3783695a2ea0fa0aa1a927fba856715) 224-incorporate-sso-into-anythingllm - [`dcb7cc9`](https://github.com/Mintplex-Labs/anything-llm/commit/dcb7cc944a0044d19cc4a2b6c4ae511e4e951b27) 224-incorporate-sso-into-anythingllm - [`90c15a1`](https://github.com/Mintplex-Labs/anything-llm/commit/90c15a11e918e603f91869baa44abb68965266d6) 224-incorporate-sso-into-anythingllm - [`564c957`](https://github.com/Mintplex-Labs/anything-llm/commit/564c9574384a3a93143d9382721b1685bf801fb8) 224-incorporate-sso-into-anythingllm - [`ff0a462`](https://github.com/Mintplex-Labs/anything-llm/commit/ff0a46200af6b77a84bbadaa91c7e372edf923d9) 224-incorporate-sso-into-anythingllm - [`ef55eb2`](https://github.com/Mintplex-Labs/anything-llm/commit/ef55eb28a342bf2deddd5607ed722c767f730f6c) 224-incorporate-sso-into-anythingllm - [`ed0def7`](https://github.com/Mintplex-Labs/anything-llm/commit/ed0def7fbc7e696ca9a577cdd32518688ee69312) 224-incorporate-sso-into-anythingllm - [`d0b2b7e`](https://github.com/Mintplex-Labs/anything-llm/commit/d0b2b7e95becdeb0d78bfeaf6419ccd4ee11306e) 224-incorporate-sso-into-anythingllm - [`116487a`](https://github.com/Mintplex-Labs/anything-llm/commit/116487af7522e8ebcd26ee1c8eb8fd98627f4ca7) 224-incorporate-sso-into-anythingllm - [`bde0e32`](https://github.com/Mintplex-Labs/anything-llm/commit/bde0e32f9c4d9650c06c409177f40cda077fdab8) 224-incorporate-sso-into-anythingllm ### 📊 Changes **37 files changed** (+3350 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+2 -0) 📝 `docker/.env.example` (+9 -0) 📝 `docker/Dockerfile` (+2 -1) ➕ `docker/Dockerfile-backend` (+160 -0) ➕ `docker/Dockerfile-frontend` (+26 -0) ➕ `docker/nginx/nginx.conf` (+21 -0) 📝 `frontend/package.json` (+3 -0) 📝 `frontend/public/embed/anythingllm-chat-widget.min.js` (+1 -1) 📝 `frontend/src/AuthContext.jsx` (+52 -6) ➕ `frontend/src/components/Modals/Password/AzureAuthProviders.jsx` (+86 -0) 📝 `frontend/src/components/Modals/Password/MultiUserAuth.jsx` (+7 -0) ➕ `frontend/src/media/logo/microsoft-login.png` (+0 -0) 📝 `frontend/src/models/system.js` (+26 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx` (+2 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx` (+133 -7) ➕ `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/snowflake.png` (+0 -0) ➕ `frontend/src/pages/Admin/System/index.jsx` (+128 -0) ➕ `frontend/src/pages/FineTuning/Steps/Confirmation/index.jsx` (+178 -0) ➕ `frontend/src/pages/FineTuning/Steps/OrderPlaced/index.jsx` (+83 -0) 📝 `frontend/src/pages/GeneralSettings/EmbedChats/index.jsx` (+32 -0) _...and 17 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### 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:16 -05:00
yindo closed this issue 2026-02-22 18:35:16 -05:00
yindo changed title from [PR #2891] Sync fork 202412 to [PR #2891] [CLOSED] Sync fork 202412 2026-06-05 15:17:11 -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#4166