Original PR: https://github.com/open-webui/open-webui/pull/8015 Author: @tjbck Created: 12/23/2024 Status: ✅ Merged Merged: 12/23/2024 Merged by: @tjbck
Base: dev ← Head: channels
dev
channels
27d2fbb
7083a61
79aae7a
7c8de9e
2e85c8e
e444f76
2914c29
eaecd15
f1d21fc
5e8f304
31 files changed (+2569 additions, -126 deletions)
📝 backend/open_webui/config.py (+6 -0) 📝 backend/open_webui/main.py (+7 -0) ➕ backend/open_webui/migrations/versions/57c599a3cb57_add_channel_table.py (+48 -0) ➕ backend/open_webui/models/channels.py (+132 -0) ➕ backend/open_webui/models/messages.py (+141 -0) 📝 backend/open_webui/models/users.py (+7 -0) 📝 backend/open_webui/routers/auths.py (+3 -0) ➕ backend/open_webui/routers/channels.py (+336 -0) 📝 backend/open_webui/socket/main.py (+7 -1) ➕ src/lib/apis/channels/index.ts (+300 -0) 📝 src/lib/components/admin/Settings/General.svelte (+11 -1) ➕ src/lib/components/channel/Channel.svelte (+145 -0) ➕ src/lib/components/channel/MessageInput.svelte (+299 -0) ➕ src/lib/components/channel/Messages.svelte (+117 -0) ➕ src/lib/components/channel/Messages/Message.svelte (+203 -0) ➕ src/lib/components/channel/Navbar.svelte (+84 -0) 📝 src/lib/components/chat/Chat.svelte (+2 -2) 📝 src/lib/components/chat/MessageInput.svelte (+1 -1) 📝 src/lib/components/chat/Messages/Name.svelte (+1 -1) ➕ src/lib/components/chat/Navbar.svelte (+194 -0)
backend/open_webui/config.py
backend/open_webui/main.py
backend/open_webui/migrations/versions/57c599a3cb57_add_channel_table.py
backend/open_webui/models/channels.py
backend/open_webui/models/messages.py
backend/open_webui/models/users.py
backend/open_webui/routers/auths.py
backend/open_webui/routers/channels.py
backend/open_webui/socket/main.py
src/lib/apis/channels/index.ts
src/lib/components/admin/Settings/General.svelte
src/lib/components/channel/Channel.svelte
src/lib/components/channel/MessageInput.svelte
src/lib/components/channel/Messages.svelte
src/lib/components/channel/Messages/Message.svelte
src/lib/components/channel/Navbar.svelte
src/lib/components/chat/Chat.svelte
src/lib/components/chat/MessageInput.svelte
src/lib/components/chat/Messages/Name.svelte
src/lib/components/chat/Navbar.svelte
...and 11 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/8015
Author: @tjbck
Created: 12/23/2024
Status: ✅ Merged
Merged: 12/23/2024
Merged by: @tjbck
Base:
dev← Head:channels📝 Commits (10+)
27d2fbbrefac: sidebar styling7083a61refac79aae7arefac: styling7c8de9efeat: channels backend2e85c8ereface444f76refac2914c29refac: stylingeaecd15refacf1d21fcfeat: channel socket integration5e8f304refac📊 Changes
31 files changed (+2569 additions, -126 deletions)
View changed files
📝
backend/open_webui/config.py(+6 -0)📝
backend/open_webui/main.py(+7 -0)➕
backend/open_webui/migrations/versions/57c599a3cb57_add_channel_table.py(+48 -0)➕
backend/open_webui/models/channels.py(+132 -0)➕
backend/open_webui/models/messages.py(+141 -0)📝
backend/open_webui/models/users.py(+7 -0)📝
backend/open_webui/routers/auths.py(+3 -0)➕
backend/open_webui/routers/channels.py(+336 -0)📝
backend/open_webui/socket/main.py(+7 -1)➕
src/lib/apis/channels/index.ts(+300 -0)📝
src/lib/components/admin/Settings/General.svelte(+11 -1)➕
src/lib/components/channel/Channel.svelte(+145 -0)➕
src/lib/components/channel/MessageInput.svelte(+299 -0)➕
src/lib/components/channel/Messages.svelte(+117 -0)➕
src/lib/components/channel/Messages/Message.svelte(+203 -0)➕
src/lib/components/channel/Navbar.svelte(+84 -0)📝
src/lib/components/chat/Chat.svelte(+2 -2)📝
src/lib/components/chat/MessageInput.svelte(+1 -1)📝
src/lib/components/chat/Messages/Name.svelte(+1 -1)➕
src/lib/components/chat/Navbar.svelte(+194 -0)...and 11 more files
📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.