[PR #21277] [MERGED] refac: acl #129664

Closed
opened 2026-05-21 13:16:24 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/21277
Author: @tjbck
Created: 2/9/2026
Status: Merged
Merged: 2/9/2026
Merged by: @tjbck

Base: devHead: acl


📝 Commits (10+)

📊 Changes

57 files changed (+2992 additions, -877 deletions)

View changed files

📝 backend/open_webui/functions.py (+0 -1)
📝 backend/open_webui/main.py (+0 -1)
backend/open_webui/migrations/versions/f1e2d3c4b5a6_add_access_grant_table.py (+350 -0)
backend/open_webui/models/access_grants.py (+776 -0)
📝 backend/open_webui/models/channels.py (+51 -58)
📝 backend/open_webui/models/files.py (+0 -5)
📝 backend/open_webui/models/groups.py (+18 -7)
📝 backend/open_webui/models/knowledge.py (+84 -41)
📝 backend/open_webui/models/models.py (+70 -89)
📝 backend/open_webui/models/notes.py (+41 -137)
📝 backend/open_webui/models/prompt_history.py (+31 -19)
📝 backend/open_webui/models/prompts.py (+76 -54)
📝 backend/open_webui/models/tools.py (+44 -40)
📝 backend/open_webui/retrieval/utils.py (+19 -4)
📝 backend/open_webui/routers/channels.py (+97 -41)
📝 backend/open_webui/routers/files.py (+8 -3)
📝 backend/open_webui/routers/groups.py (+18 -0)
📝 backend/open_webui/routers/knowledge.py (+88 -20)
📝 backend/open_webui/routers/models.py (+44 -7)
📝 backend/open_webui/routers/notes.py (+28 -14)

...and 37 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/21277 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/9/2026 **Status:** ✅ Merged **Merged:** 2/9/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `acl` --- ### 📝 Commits (10+) - [`9be85b6`](https://github.com/open-webui/open-webui/commit/9be85b6d3c30549ce1eea1e1653846d65bfb4087) refac: access control migration - [`d193c14`](https://github.com/open-webui/open-webui/commit/d193c143a5b20bde113880973fcb288ff9188cad) refac - [`42763cb`](https://github.com/open-webui/open-webui/commit/42763cbbd8bdebc0b7a068c8f5f6eff166685b65) enh: access grants table - [`0f78451`](https://github.com/open-webui/open-webui/commit/0f78451c2b66af48f0ef0d6aa86197b79d6c3771) refac - [`9747b07`](https://github.com/open-webui/open-webui/commit/9747b07ca5fb2d7a6e32b73ba98ca306a7b25f2d) refac - [`b147616`](https://github.com/open-webui/open-webui/commit/b147616080a97e7b36d133500e9e41043e5ccd06) refac - [`3ae44d1`](https://github.com/open-webui/open-webui/commit/3ae44d11a5789429a3277070d6f03f6e4c4979a8) refac - [`f7406ff`](https://github.com/open-webui/open-webui/commit/f7406ff5765ebc07d18d036a51487152597254e3) refac - [`3c7f9aa`](https://github.com/open-webui/open-webui/commit/3c7f9aa6a4ca942ed52d86ac9c0752f578d817ca) refac - [`68c7729`](https://github.com/open-webui/open-webui/commit/68c77295bd479ea6fd73cf72a790bcf96df781cf) refac ### 📊 Changes **57 files changed** (+2992 additions, -877 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/functions.py` (+0 -1) 📝 `backend/open_webui/main.py` (+0 -1) ➕ `backend/open_webui/migrations/versions/f1e2d3c4b5a6_add_access_grant_table.py` (+350 -0) ➕ `backend/open_webui/models/access_grants.py` (+776 -0) 📝 `backend/open_webui/models/channels.py` (+51 -58) 📝 `backend/open_webui/models/files.py` (+0 -5) 📝 `backend/open_webui/models/groups.py` (+18 -7) 📝 `backend/open_webui/models/knowledge.py` (+84 -41) 📝 `backend/open_webui/models/models.py` (+70 -89) 📝 `backend/open_webui/models/notes.py` (+41 -137) 📝 `backend/open_webui/models/prompt_history.py` (+31 -19) 📝 `backend/open_webui/models/prompts.py` (+76 -54) 📝 `backend/open_webui/models/tools.py` (+44 -40) 📝 `backend/open_webui/retrieval/utils.py` (+19 -4) 📝 `backend/open_webui/routers/channels.py` (+97 -41) 📝 `backend/open_webui/routers/files.py` (+8 -3) 📝 `backend/open_webui/routers/groups.py` (+18 -0) 📝 `backend/open_webui/routers/knowledge.py` (+88 -20) 📝 `backend/open_webui/routers/models.py` (+44 -7) 📝 `backend/open_webui/routers/notes.py` (+28 -14) _...and 37 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-05-21 13:16:24 -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#129664