[PR #1416] [MERGED] 0.1.117 #20665

Closed
opened 2026-04-20 03:06:36 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/1416
Author: @tjbck
Created: 4/4/2024
Status: Merged
Merged: 4/4/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 81e9280 backend support api key
  • b4b56f9 frontend support api key
  • 29f13f3 feat: add WEBUI_AUTH_TRUSTED_EMAIL_HEADER for authenticating users by a trusted header
  • 50f6add feat: auto signup/login with WEBUI_AUTH_TRUSTED_EMAIL_HEADER
  • 047c9fe fix: styling
  • 12287f8 chore: code formatting
  • 150152d fix: accidental indent during format changed logic
  • a0935de Merge branch 'dev' into feature/support_auth_by_api_key
  • bfbfdae feat: add backend functions for sharing chats
  • 196f91d feat: add frontend support for locally sharing chats

📊 Changes

45 files changed (+2065 additions, -483 deletions)

View changed files

📝 CHANGELOG.md (+17 -0)
📝 Dockerfile (+1 -0)
📝 backend/apps/ollama/main.py (+6 -0)
📝 backend/apps/rag/main.py (+2 -2)
📝 backend/apps/web/internal/db.py (+4 -1)
backend/apps/web/internal/migrations/001_initial_schema.py (+149 -0)
backend/apps/web/internal/migrations/002_add_local_sharing.py (+48 -0)
backend/apps/web/internal/migrations/003_add_auth_api_key.py (+48 -0)
backend/apps/web/internal/migrations/README.md (+21 -0)
📝 backend/apps/web/main.py (+2 -1)
📝 backend/apps/web/models/auths.py (+26 -0)
📝 backend/apps/web/models/chats.py (+93 -1)
📝 backend/apps/web/models/users.py (+25 -0)
📝 backend/apps/web/routers/auths.py (+62 -8)
📝 backend/apps/web/routers/chats.py (+72 -0)
📝 backend/apps/web/routers/utils.py (+13 -0)
📝 backend/config.py (+9 -2)
📝 backend/constants.py (+4 -1)
📝 backend/main.py (+30 -1)
📝 backend/requirements.txt (+3 -0)

...and 25 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/1416 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/4/2024 **Status:** ✅ Merged **Merged:** 4/4/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`81e9280`](https://github.com/open-webui/open-webui/commit/81e928030f1524444f3c32b23916a76ed58a59d7) backend support api key - [`b4b56f9`](https://github.com/open-webui/open-webui/commit/b4b56f9c85af2b5e8b756ed2b8b9ef40166a3c5d) frontend support api key - [`29f13f3`](https://github.com/open-webui/open-webui/commit/29f13f34d3b58371dde8a8fcd11bf191fe11e5cd) feat: add WEBUI_AUTH_TRUSTED_EMAIL_HEADER for authenticating users by a trusted header - [`50f6add`](https://github.com/open-webui/open-webui/commit/50f6addd6f0d5374972962a36da73dc87ba68f69) feat: auto signup/login with WEBUI_AUTH_TRUSTED_EMAIL_HEADER - [`047c9fe`](https://github.com/open-webui/open-webui/commit/047c9fe82c0e9ec4e38234315e2144bc13f5f408) fix: styling - [`12287f8`](https://github.com/open-webui/open-webui/commit/12287f8680ec117e192ab1b38a3599aff6f3a74a) chore: code formatting - [`150152d`](https://github.com/open-webui/open-webui/commit/150152ddbdb50b93ee2510451d5a46f6aca22aab) fix: accidental indent during format changed logic - [`a0935de`](https://github.com/open-webui/open-webui/commit/a0935dec60eb635e7f8b3bf796aab9047cd6ee88) Merge branch 'dev' into feature/support_auth_by_api_key - [`bfbfdae`](https://github.com/open-webui/open-webui/commit/bfbfdae1c5c8aa2f5b94d7f9738d70b061b4abe2) feat: add backend functions for sharing chats - [`196f91d`](https://github.com/open-webui/open-webui/commit/196f91d68c9211a37f9d902ef50a6f3cfcb187fa) feat: add frontend support for locally sharing chats ### 📊 Changes **45 files changed** (+2065 additions, -483 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+17 -0) 📝 `Dockerfile` (+1 -0) 📝 `backend/apps/ollama/main.py` (+6 -0) 📝 `backend/apps/rag/main.py` (+2 -2) 📝 `backend/apps/web/internal/db.py` (+4 -1) ➕ `backend/apps/web/internal/migrations/001_initial_schema.py` (+149 -0) ➕ `backend/apps/web/internal/migrations/002_add_local_sharing.py` (+48 -0) ➕ `backend/apps/web/internal/migrations/003_add_auth_api_key.py` (+48 -0) ➕ `backend/apps/web/internal/migrations/README.md` (+21 -0) 📝 `backend/apps/web/main.py` (+2 -1) 📝 `backend/apps/web/models/auths.py` (+26 -0) 📝 `backend/apps/web/models/chats.py` (+93 -1) 📝 `backend/apps/web/models/users.py` (+25 -0) 📝 `backend/apps/web/routers/auths.py` (+62 -8) 📝 `backend/apps/web/routers/chats.py` (+72 -0) 📝 `backend/apps/web/routers/utils.py` (+13 -0) 📝 `backend/config.py` (+9 -2) 📝 `backend/constants.py` (+4 -1) 📝 `backend/main.py` (+30 -1) 📝 `backend/requirements.txt` (+3 -0) _...and 25 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-20 03:06:36 -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#20665