[PR #16505] [CLOSED] DELETE ME #10953

Closed
opened 2025-11-11 19:18:11 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/16505
Author: @dbelcher-godaddy
Created: 8/11/2025
Status: Closed

Base: mainHead: ad_integration


📝 Commits (5)

  • 8d5c47b Moved Tags and TagList (#16)
  • 93801e3 Sync open-webui repo (#17)
  • a2c332d Added gd_auth to backend.
  • c0010be Added active directory integration to GoDaddy backend.
  • 66b50d8 Turned on AD integration for group claims using OAuth.

📊 Changes

22 files changed (+1805 additions, -27 deletions)

View changed files

backend/godaddy/README.md (+44 -0)
backend/godaddy/__init__.py (+32 -0)
backend/godaddy/active_directory.py (+140 -0)
backend/godaddy/auth_extension.py (+109 -0)
backend/godaddy/config.py (+28 -0)
backend/godaddy/gd_auth/__init__.py (+33 -0)
backend/godaddy/gd_auth/client.py (+112 -0)
backend/godaddy/gd_auth/exceptions.py (+41 -0)
backend/godaddy/gd_auth/key_cache.py (+37 -0)
backend/godaddy/gd_auth/token.py (+679 -0)
backend/godaddy/gd_auth/utils.py (+93 -0)
backend/godaddy/oauth_extension.py (+251 -0)
📝 backend/open_webui/config.py (+0 -6)
📝 backend/open_webui/env.py (+32 -0)
📝 backend/open_webui/main.py (+11 -1)
📝 backend/open_webui/utils/auth.py (+55 -11)
📝 docker-compose.otel.yaml (+19 -8)
src/gclib/README.md (+49 -0)
src/gclib/components/common/Tags.svelte (+14 -0)
src/gclib/components/common/Tags/TagList.svelte (+22 -0)

...and 2 more files

📄 Description

PLEASE DELETE ME


🔄 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/open-webui/open-webui/pull/16505 **Author:** [@dbelcher-godaddy](https://github.com/dbelcher-godaddy) **Created:** 8/11/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `ad_integration` --- ### 📝 Commits (5) - [`8d5c47b`](https://github.com/open-webui/open-webui/commit/8d5c47b4896ad7f7cdf1bc2a74fd1f2b6e9017bb) Moved Tags and TagList (#16) - [`93801e3`](https://github.com/open-webui/open-webui/commit/93801e3ab21f0cc9724ff5643b97b1b12e9d0634) Sync open-webui repo (#17) - [`a2c332d`](https://github.com/open-webui/open-webui/commit/a2c332d09cb2b0d67c36067bb36549a82d4d24fe) Added gd_auth to backend. - [`c0010be`](https://github.com/open-webui/open-webui/commit/c0010bea45fcdc4b94e80ca2cd72c21a0660acb1) Added active directory integration to GoDaddy backend. - [`66b50d8`](https://github.com/open-webui/open-webui/commit/66b50d886357413e5c92cb3490f3a96bc724f591) Turned on AD integration for group claims using OAuth. ### 📊 Changes **22 files changed** (+1805 additions, -27 deletions) <details> <summary>View changed files</summary> ➕ `backend/godaddy/README.md` (+44 -0) ➕ `backend/godaddy/__init__.py` (+32 -0) ➕ `backend/godaddy/active_directory.py` (+140 -0) ➕ `backend/godaddy/auth_extension.py` (+109 -0) ➕ `backend/godaddy/config.py` (+28 -0) ➕ `backend/godaddy/gd_auth/__init__.py` (+33 -0) ➕ `backend/godaddy/gd_auth/client.py` (+112 -0) ➕ `backend/godaddy/gd_auth/exceptions.py` (+41 -0) ➕ `backend/godaddy/gd_auth/key_cache.py` (+37 -0) ➕ `backend/godaddy/gd_auth/token.py` (+679 -0) ➕ `backend/godaddy/gd_auth/utils.py` (+93 -0) ➕ `backend/godaddy/oauth_extension.py` (+251 -0) 📝 `backend/open_webui/config.py` (+0 -6) 📝 `backend/open_webui/env.py` (+32 -0) 📝 `backend/open_webui/main.py` (+11 -1) 📝 `backend/open_webui/utils/auth.py` (+55 -11) 📝 `docker-compose.otel.yaml` (+19 -8) ➕ `src/gclib/README.md` (+49 -0) ➕ `src/gclib/components/common/Tags.svelte` (+14 -0) ➕ `src/gclib/components/common/Tags/TagList.svelte` (+22 -0) _...and 2 more files_ </details> ### 📄 Description PLEASE DELETE ME --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-11 19:18:11 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#10953