[PR #6931] [MERGED] feat: user groups #8775

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/6931
Author: @tjbck
Created: 11/13/2024
Status: Merged
Merged: 11/17/2024
Merged by: @tjbck

Base: devHead: groups


📝 Commits (10+)

📊 Changes

102 files changed (+7351 additions, -4570 deletions)

View changed files

📝 backend/open_webui/apps/ollama/main.py (+83 -73)
📝 backend/open_webui/apps/openai/main.py (+60 -49)
📝 backend/open_webui/apps/retrieval/utils.py (+16 -7)
📝 backend/open_webui/apps/webui/main.py (+15 -7)
backend/open_webui/apps/webui/models/documents.py (+0 -157)
backend/open_webui/apps/webui/models/groups.py (+181 -0)
📝 backend/open_webui/apps/webui/models/knowledge.py (+55 -9)
📝 backend/open_webui/apps/webui/models/models.py (+87 -2)
📝 backend/open_webui/apps/webui/models/prompts.py (+39 -5)
📝 backend/open_webui/apps/webui/models/tools.py (+38 -1)
📝 backend/open_webui/apps/webui/routers/auths.py (+95 -31)
📝 backend/open_webui/apps/webui/routers/chats.py (+9 -5)
backend/open_webui/apps/webui/routers/groups.py (+120 -0)
📝 backend/open_webui/apps/webui/routers/knowledge.py (+192 -77)
📝 backend/open_webui/apps/webui/routers/models.py (+105 -36)
📝 backend/open_webui/apps/webui/routers/prompts.py (+52 -5)
📝 backend/open_webui/apps/webui/routers/tools.py (+128 -78)
📝 backend/open_webui/apps/webui/routers/users.py (+41 -4)
📝 backend/open_webui/apps/webui/utils.py (+1 -1)
📝 backend/open_webui/config.py (+39 -20)

...and 80 more files

📄 Description

#2924


🔄 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/6931 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 11/13/2024 **Status:** ✅ Merged **Merged:** 11/17/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `groups` --- ### 📝 Commits (10+) - [`baea26d`](https://github.com/open-webui/open-webui/commit/baea26d9ca34e05e27ad247d3c2e90e5744a0a53) wip: user groups frontend - [`ce9aef9`](https://github.com/open-webui/open-webui/commit/ce9aef900c28e58c60ebac9d3e701e2187a0526d) wip: frontend - [`aaba413`](https://github.com/open-webui/open-webui/commit/aaba41339e4f63d52b133cc4640bf0d78bc779b1) Merge pull request #6938 from open-webui/dev - [`0e8c0b4`](https://github.com/open-webui/open-webui/commit/0e8c0b452e13642c07dcc5843fc8d7ecc98e7795) wip: frontend - [`85d7f1c`](https://github.com/open-webui/open-webui/commit/85d7f1c6edf33db9b2d63e1a44ff3c915bc3bf3e) refac - [`73cdf90`](https://github.com/open-webui/open-webui/commit/73cdf90527368d5169ef6660bc4bcfde3af3fd2e) refac: styling - [`0cf1969`](https://github.com/open-webui/open-webui/commit/0cf1969adc3a70c3579447ff623650533c875ec8) refac: rm unused file - [`9474449`](https://github.com/open-webui/open-webui/commit/947444949a999fb31af7ea4a42f12cb0d2f62f40) refac: move functions (plugin) to admin panel - [`7165202`](https://github.com/open-webui/open-webui/commit/716520275b3970a1f43a1fd0712983f697ab40cc) feat: groups db migration - [`659f3da`](https://github.com/open-webui/open-webui/commit/659f3dac44fade6e4e905a9c21af00d8bfc40f19) feat: groups backend ### 📊 Changes **102 files changed** (+7351 additions, -4570 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/apps/ollama/main.py` (+83 -73) 📝 `backend/open_webui/apps/openai/main.py` (+60 -49) 📝 `backend/open_webui/apps/retrieval/utils.py` (+16 -7) 📝 `backend/open_webui/apps/webui/main.py` (+15 -7) ➖ `backend/open_webui/apps/webui/models/documents.py` (+0 -157) ➕ `backend/open_webui/apps/webui/models/groups.py` (+181 -0) 📝 `backend/open_webui/apps/webui/models/knowledge.py` (+55 -9) 📝 `backend/open_webui/apps/webui/models/models.py` (+87 -2) 📝 `backend/open_webui/apps/webui/models/prompts.py` (+39 -5) 📝 `backend/open_webui/apps/webui/models/tools.py` (+38 -1) 📝 `backend/open_webui/apps/webui/routers/auths.py` (+95 -31) 📝 `backend/open_webui/apps/webui/routers/chats.py` (+9 -5) ➕ `backend/open_webui/apps/webui/routers/groups.py` (+120 -0) 📝 `backend/open_webui/apps/webui/routers/knowledge.py` (+192 -77) 📝 `backend/open_webui/apps/webui/routers/models.py` (+105 -36) 📝 `backend/open_webui/apps/webui/routers/prompts.py` (+52 -5) 📝 `backend/open_webui/apps/webui/routers/tools.py` (+128 -78) 📝 `backend/open_webui/apps/webui/routers/users.py` (+41 -4) 📝 `backend/open_webui/apps/webui/utils.py` (+1 -1) 📝 `backend/open_webui/config.py` (+39 -20) _...and 80 more files_ </details> ### 📄 Description #2924 --- <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 18:05:42 -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#8775