[PR #329] [MERGED] dev #20262

Closed
opened 2026-04-20 02:51:17 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/329
Author: @tjbck
Created: 12/30/2023
Status: Merged
Merged: 12/30/2023
Merged by: @tjbck

Base: devHead: main


📝 Commits (10+)

  • b61bb77 feat: delete user backend support
  • ad1cb5f fix: disable admin self user delete
  • 7fade0b feat: delete user button added to admin page
  • 48cc2c5 chore: delete user backend refac
  • 5b4bf45 fix: delete auth with user
  • 3fce09e Merge pull request #314 from ollama-webui/delete-user
  • 136eb18 feat: account settings
  • 450b9b6 Merge branch 'main' into account-settings
  • 9bd48ff feat: change password support
  • d8bb19f feat: change password frontend added

📊 Changes

28 files changed (+1505 additions, -946 deletions)

View changed files

📝 README.md (+5 -2)
📝 TROUBLESHOOTING.md (+18 -16)
📝 backend/apps/web/models/auths.py (+30 -0)
📝 backend/apps/web/models/chats.py (+9 -0)
📝 backend/apps/web/models/users.py (+18 -0)
📝 backend/apps/web/routers/auths.py (+23 -0)
📝 backend/apps/web/routers/chats.py (+20 -0)
📝 backend/apps/web/routers/users.py (+41 -0)
📝 backend/constants.py (+5 -0)
📝 src/lib/apis/auths/index.ts (+31 -0)
📝 src/lib/apis/chats/index.ts (+32 -0)
📝 src/lib/apis/users/index.ts (+30 -2)
📝 src/lib/components/chat/Messages.svelte (+49 -788)
src/lib/components/chat/Messages/Name.svelte (+3 -0)
src/lib/components/chat/Messages/Placeholder.svelte (+71 -0)
src/lib/components/chat/Messages/ProfileImage.svelte (+7 -0)
src/lib/components/chat/Messages/ResponseMessage.svelte (+537 -0)
src/lib/components/chat/Messages/Skeleton.svelte (+19 -0)
src/lib/components/chat/Messages/UserMessage.svelte (+195 -0)
📝 src/lib/components/chat/ModelSelector.svelte (+4 -3)

...and 8 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/329 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 12/30/2023 **Status:** ✅ Merged **Merged:** 12/30/2023 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `main` --- ### 📝 Commits (10+) - [`b61bb77`](https://github.com/open-webui/open-webui/commit/b61bb779502b654e934e8055d34654f149bfca39) feat: delete user backend support - [`ad1cb5f`](https://github.com/open-webui/open-webui/commit/ad1cb5fc256b9ff1f3a2f008484a765fd8c139d4) fix: disable admin self user delete - [`7fade0b`](https://github.com/open-webui/open-webui/commit/7fade0bb2f308741a5207ba69ba09fc368a48547) feat: delete user button added to admin page - [`48cc2c5`](https://github.com/open-webui/open-webui/commit/48cc2c5053f4a770a39eaf202aadf9a605696965) chore: delete user backend refac - [`5b4bf45`](https://github.com/open-webui/open-webui/commit/5b4bf45ad275faa9003275877e71af0575ee2117) fix: delete auth with user - [`3fce09e`](https://github.com/open-webui/open-webui/commit/3fce09eb3d46b2007701e580069b583ca4564ebd) Merge pull request #314 from ollama-webui/delete-user - [`136eb18`](https://github.com/open-webui/open-webui/commit/136eb18fb0be488cf0ffadee4b65ba6bdd73c613) feat: account settings - [`450b9b6`](https://github.com/open-webui/open-webui/commit/450b9b6aefa7655afdb06f83d1ccb0929f80eebd) Merge branch 'main' into account-settings - [`9bd48ff`](https://github.com/open-webui/open-webui/commit/9bd48ffd9361f386b49820c0b1b4b292d93caa7b) feat: change password support - [`d8bb19f`](https://github.com/open-webui/open-webui/commit/d8bb19fd8ad962ec290388c6e7116bbfb1745971) feat: change password frontend added ### 📊 Changes **28 files changed** (+1505 additions, -946 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+5 -2) 📝 `TROUBLESHOOTING.md` (+18 -16) 📝 `backend/apps/web/models/auths.py` (+30 -0) 📝 `backend/apps/web/models/chats.py` (+9 -0) 📝 `backend/apps/web/models/users.py` (+18 -0) 📝 `backend/apps/web/routers/auths.py` (+23 -0) 📝 `backend/apps/web/routers/chats.py` (+20 -0) 📝 `backend/apps/web/routers/users.py` (+41 -0) 📝 `backend/constants.py` (+5 -0) 📝 `src/lib/apis/auths/index.ts` (+31 -0) 📝 `src/lib/apis/chats/index.ts` (+32 -0) 📝 `src/lib/apis/users/index.ts` (+30 -2) 📝 `src/lib/components/chat/Messages.svelte` (+49 -788) ➕ `src/lib/components/chat/Messages/Name.svelte` (+3 -0) ➕ `src/lib/components/chat/Messages/Placeholder.svelte` (+71 -0) ➕ `src/lib/components/chat/Messages/ProfileImage.svelte` (+7 -0) ➕ `src/lib/components/chat/Messages/ResponseMessage.svelte` (+537 -0) ➕ `src/lib/components/chat/Messages/Skeleton.svelte` (+19 -0) ➕ `src/lib/components/chat/Messages/UserMessage.svelte` (+195 -0) 📝 `src/lib/components/chat/ModelSelector.svelte` (+4 -3) _...and 8 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 02:51:17 -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#20262