[PR #15481] [CLOSED] fix custom resource loader admin account lookup #46896

Closed
opened 2026-04-29 21:53:30 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/15481
Author: @toscharfmoc
Created: 7/2/2025
Status: Closed

Base: mainHead: feature/fix/custom_resource_loader


📝 Commits (10+)

  • a347350 c/feat(static): add avatars in static/avatars/
  • 40c2dcd custom_resources: update to latest config
  • 038919a c/feat(static): update agents.json
  • e838de9 custom_resources: update submodule pointer
  • 7b6caa5 c/feat(+layout): hardcode change to de-DE language
  • e8d9b42 c/chore(locales/ionos): update texts
  • 402acc0 c/fix(custom_resource_loader): don't handle exceptions with print and exit(1)
  • 3112b88 c/chore(custom_resource_loader): rewrite env variable checking
  • 7480605 c/feat(custom_resources): update to latest config
  • a0b7229 c/feat(custom_resources): update to latest models config

📊 Changes

245 files changed (+9360 additions, -2844 deletions)

View changed files

.env.dev.example (+11 -0)
.github/workflows/ionos-dev-docker-build.yaml (+182 -0)
📝 .gitignore (+1 -0)
.gitmodules (+3 -0)
📝 Dockerfile (+1 -0)
backend/custom_resource_loader.py (+254 -0)
backend/custom_resources (+1 -0)
📝 backend/dev.sh (+9 -0)
📝 backend/open_webui/config.py (+23 -8)
📝 backend/open_webui/env.py (+27 -3)
📝 backend/open_webui/main.py (+21 -2)
backend/open_webui/middleware.py (+61 -0)
📝 backend/open_webui/routers/auths.py (+10 -3)
📝 backend/open_webui/routers/channels.py (+2 -4)
📝 backend/open_webui/routers/chats.py (+31 -21)
📝 backend/open_webui/routers/files.py (+26 -26)
📝 backend/open_webui/routers/knowledge.py (+114 -127)
📝 backend/open_webui/routers/users.py (+106 -5)
backend/open_webui/services/__init__.py (+0 -0)
backend/open_webui/services/ionos.py (+45 -0)

...and 80 more files

📄 Description

No description provided


🔄 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/15481 **Author:** [@toscharfmoc](https://github.com/toscharfmoc) **Created:** 7/2/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/fix/custom_resource_loader` --- ### 📝 Commits (10+) - [`a347350`](https://github.com/open-webui/open-webui/commit/a347350bc15d81ca4601e0d174e3649ece409a32) c/feat(static): add avatars in static/avatars/ - [`40c2dcd`](https://github.com/open-webui/open-webui/commit/40c2dcd9f0af1dd33f8183583d014a0938de097c) custom_resources: update to latest config - [`038919a`](https://github.com/open-webui/open-webui/commit/038919a4357fca0b6c07600b7be7584c5b8b9d64) c/feat(static): update agents.json - [`e838de9`](https://github.com/open-webui/open-webui/commit/e838de939e3bb90c7e355cba29d61c5494d97122) custom_resources: update submodule pointer - [`7b6caa5`](https://github.com/open-webui/open-webui/commit/7b6caa5863e444f1576038b07becf64d2536b159) c/feat(+layout): hardcode change to de-DE language - [`e8d9b42`](https://github.com/open-webui/open-webui/commit/e8d9b4228f31ee30735a3d32d84fa8d1fab3c47f) c/chore(locales/ionos): update texts - [`402acc0`](https://github.com/open-webui/open-webui/commit/402acc056076c5f43001ba65a3d6a0f2af65bdeb) c/fix(custom_resource_loader): don't handle exceptions with print and exit(1) - [`3112b88`](https://github.com/open-webui/open-webui/commit/3112b887f9abda77a4f00482b76527388f0f6daa) c/chore(custom_resource_loader): rewrite env variable checking - [`7480605`](https://github.com/open-webui/open-webui/commit/74806053ccbaf81569fb79c5f279ed988520b744) c/feat(custom_resources): update to latest config - [`a0b7229`](https://github.com/open-webui/open-webui/commit/a0b7229fd5076596dae4d8f29b1e5055ebfbe694) c/feat(custom_resources): update to latest models config ### 📊 Changes **245 files changed** (+9360 additions, -2844 deletions) <details> <summary>View changed files</summary> ➕ `.env.dev.example` (+11 -0) ➕ `.github/workflows/ionos-dev-docker-build.yaml` (+182 -0) 📝 `.gitignore` (+1 -0) ➕ `.gitmodules` (+3 -0) 📝 `Dockerfile` (+1 -0) ➕ `backend/custom_resource_loader.py` (+254 -0) ➕ `backend/custom_resources` (+1 -0) 📝 `backend/dev.sh` (+9 -0) 📝 `backend/open_webui/config.py` (+23 -8) 📝 `backend/open_webui/env.py` (+27 -3) 📝 `backend/open_webui/main.py` (+21 -2) ➕ `backend/open_webui/middleware.py` (+61 -0) 📝 `backend/open_webui/routers/auths.py` (+10 -3) 📝 `backend/open_webui/routers/channels.py` (+2 -4) 📝 `backend/open_webui/routers/chats.py` (+31 -21) 📝 `backend/open_webui/routers/files.py` (+26 -26) 📝 `backend/open_webui/routers/knowledge.py` (+114 -127) 📝 `backend/open_webui/routers/users.py` (+106 -5) ➕ `backend/open_webui/services/__init__.py` (+0 -0) ➕ `backend/open_webui/services/ionos.py` (+45 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <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 2026-04-29 21:53:31 -05: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#46896