[PR #23880] [MERGED] feat: calendar #43052

Closed
opened 2026-04-25 14:45:52 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: devHead: calendar


📝 Commits (5)

📊 Changes

20 files changed (+3395 additions, -0 deletions)

View changed files

📝 backend/open_webui/config.py (+6 -0)
📝 backend/open_webui/main.py (+5 -0)
📝 backend/open_webui/migrations/env.py (+1 -0)
backend/open_webui/migrations/versions/56359461a091_add_calendar_tables.py (+79 -0)
📝 backend/open_webui/models/automations.py (+38 -0)
backend/open_webui/models/calendar.py (+842 -0)
📝 backend/open_webui/routers/auths.py (+4 -0)
backend/open_webui/routers/calendar.py (+350 -0)
📝 backend/open_webui/tools/builtin.py (+420 -0)
backend/open_webui/utils/calendar.py (+83 -0)
📝 backend/open_webui/utils/tools.py (+13 -0)
src/lib/apis/calendar/index.ts (+458 -0)
📝 src/lib/components/admin/Settings/General.svelte (+8 -0)
src/lib/components/calendar/CalendarEventChip.svelte (+28 -0)
src/lib/components/calendar/CalendarEventModal.svelte (+269 -0)
src/lib/components/calendar/CalendarSidebar.svelte (+174 -0)
src/lib/components/calendar/CalendarView.svelte (+380 -0)
📝 src/lib/components/layout/Sidebar/UserMenu.svelte (+32 -0)
📝 src/lib/components/workspace/Models/BuiltinTools.svelte (+4 -0)
src/routes/(app)/calendar/+page.svelte (+201 -0)

📄 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/23880 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/19/2026 **Status:** ✅ Merged **Merged:** 4/19/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `calendar` --- ### 📝 Commits (5) - [`8d739e2`](https://github.com/open-webui/open-webui/commit/8d739e2abab74ac5a8a27276d69e7ede391a9a45) feat: calendar - [`4a5401b`](https://github.com/open-webui/open-webui/commit/4a5401b4174edbef8d102ac2917944ae1d2cdc00) refac - [`f0ec5ee`](https://github.com/open-webui/open-webui/commit/f0ec5ee08ff6978131b3d657c8a8bc98c8533d05) refac - [`98627e4`](https://github.com/open-webui/open-webui/commit/98627e42b4d996bf4df8316da73f161cef65f673) refac - [`f45d0f1`](https://github.com/open-webui/open-webui/commit/f45d0f130ef9c3d3958f54320b987f2e2eacc421) refac ### 📊 Changes **20 files changed** (+3395 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/config.py` (+6 -0) 📝 `backend/open_webui/main.py` (+5 -0) 📝 `backend/open_webui/migrations/env.py` (+1 -0) ➕ `backend/open_webui/migrations/versions/56359461a091_add_calendar_tables.py` (+79 -0) 📝 `backend/open_webui/models/automations.py` (+38 -0) ➕ `backend/open_webui/models/calendar.py` (+842 -0) 📝 `backend/open_webui/routers/auths.py` (+4 -0) ➕ `backend/open_webui/routers/calendar.py` (+350 -0) 📝 `backend/open_webui/tools/builtin.py` (+420 -0) ➕ `backend/open_webui/utils/calendar.py` (+83 -0) 📝 `backend/open_webui/utils/tools.py` (+13 -0) ➕ `src/lib/apis/calendar/index.ts` (+458 -0) 📝 `src/lib/components/admin/Settings/General.svelte` (+8 -0) ➕ `src/lib/components/calendar/CalendarEventChip.svelte` (+28 -0) ➕ `src/lib/components/calendar/CalendarEventModal.svelte` (+269 -0) ➕ `src/lib/components/calendar/CalendarSidebar.svelte` (+174 -0) ➕ `src/lib/components/calendar/CalendarView.svelte` (+380 -0) 📝 `src/lib/components/layout/Sidebar/UserMenu.svelte` (+32 -0) 📝 `src/lib/components/workspace/Models/BuiltinTools.svelte` (+4 -0) ➕ `src/routes/(app)/calendar/+page.svelte` (+201 -0) </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-25 14:45:52 -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#43052