[PR #2418] [CLOSED] Sync fork 202410 #3989

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2418
Author: @ariyanki
Created: 10/3/2024
Status: Closed

Base: masterHead: sync-fork-202410


📝 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

22 files changed (+941 additions, -14 deletions)

View changed files

📝 docker/.env.example (+10 -1)
docker/Dockerfile-backend (+160 -0)
docker/Dockerfile-frontend (+26 -0)
docker/nginx/nginx.conf (+21 -0)
📝 frontend/package.json (+3 -0)
📝 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/GeneralSettings/Security/index.jsx (+74 -1)
📝 frontend/yarn.lock (+45 -3)
📝 server/.env.example (+10 -1)
📝 server/endpoints/api/auth/index.js (+172 -0)
📝 server/endpoints/system.js (+61 -1)
📝 server/models/systemSettings.js (+8 -0)
📝 server/models/user.js (+29 -0)
server/prisma/migrations/20240813113051_init/migration.sql (+20 -0)
📝 server/prisma/schema.prisma (+2 -1)
📝 server/swagger/openapi.json (+69 -0)

...and 2 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/2418 **Author:** [@ariyanki](https://github.com/ariyanki) **Created:** 10/3/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `sync-fork-202410` --- ### 📝 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 **22 files changed** (+941 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `docker/.env.example` (+10 -1) ➕ `docker/Dockerfile-backend` (+160 -0) ➕ `docker/Dockerfile-frontend` (+26 -0) ➕ `docker/nginx/nginx.conf` (+21 -0) 📝 `frontend/package.json` (+3 -0) 📝 `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/GeneralSettings/Security/index.jsx` (+74 -1) 📝 `frontend/yarn.lock` (+45 -3) 📝 `server/.env.example` (+10 -1) 📝 `server/endpoints/api/auth/index.js` (+172 -0) 📝 `server/endpoints/system.js` (+61 -1) 📝 `server/models/systemSettings.js` (+8 -0) 📝 `server/models/user.js` (+29 -0) ➕ `server/prisma/migrations/20240813113051_init/migration.sql` (+20 -0) 📝 `server/prisma/schema.prisma` (+2 -1) 📝 `server/swagger/openapi.json` (+69 -0) _...and 2 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:34:54 -05:00
yindo closed this issue 2026-02-22 18:34:54 -05:00
yindo changed title from [PR #2418] Sync fork 202410 to [PR #2418] [CLOSED] Sync fork 202410 2026-06-05 15:16:14 -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#3989