diff --git a/tests/test_video_side_shell.py b/tests/test_video_side_shell.py index 6bb8d491..01ef0b80 100644 --- a/tests/test_video_side_shell.py +++ b/tests/test_video_side_shell.py @@ -20,7 +20,8 @@ _CSS_PATH = _ROOT / "webui" / "static" / "video" / "video-side.css" EXPECTED_VIDEO_PAGES = { "video-dashboard", "video-search", "video-discover", "video-library", - "video-calendar", "video-import", "video-settings", "video-issues", "video-help", + "video-watchlist", "video-downloads", "video-calendar", "video-import", + "video-settings", "video-issues", "video-help", } diff --git a/webui/index.html b/webui/index.html index cb2dbe99..3359dfc6 100644 --- a/webui/index.html +++ b/webui/index.html @@ -341,6 +341,14 @@ Library + + + Watchlist + + + + Downloads + Calendar diff --git a/webui/static/video/video-side.js b/webui/static/video/video-side.js index da21e2e2..dbdb6cb2 100644 --- a/webui/static/video/video-side.js +++ b/webui/static/video/video-side.js @@ -29,6 +29,8 @@ { id: 'video-search', label: 'Search' }, { id: 'video-discover', label: 'Discover' }, { id: 'video-library', label: 'Library' }, + { id: 'video-watchlist', label: 'Watchlist' }, + { id: 'video-downloads', label: 'Downloads' }, { id: 'video-calendar', label: 'Calendar' }, { id: 'video-import', label: 'Import', shared: true }, { id: 'video-settings', label: 'Settings' },