From 6922648000bf82753d33edc4b51dab354a7787c1 Mon Sep 17 00:00:00 2001 From: GeNomeZ <115205222+genomez@users.noreply.github.com> Date: Sat, 16 Nov 2024 22:20:01 -0600 Subject: [PATCH 1/3] Update homepage.json This adds the endpoint "/api/v3/calendar" for use with the calendar widget for homepage. --- root/app/www/public/templates/radarr/homepage.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/root/app/www/public/templates/radarr/homepage.json b/root/app/www/public/templates/radarr/homepage.json index f746603..91c3e52 100644 --- a/root/app/www/public/templates/radarr/homepage.json +++ b/root/app/www/public/templates/radarr/homepage.json @@ -1,4 +1,7 @@ { + "/api/v3/calendar": [ + "get" + ], "/api/v3/movie": [ "get" ], @@ -11,4 +14,4 @@ "/api/v3/queue/status": [ "get" ] -} \ No newline at end of file +} From 5264e02f68c95c84da51b42e50722409a5c9060a Mon Sep 17 00:00:00 2001 From: GeNomeZ <115205222+genomez@users.noreply.github.com> Date: Sat, 16 Nov 2024 22:21:29 -0600 Subject: [PATCH 2/3] Update homepage.json This adds the endpoint "/api/v3/calendar" for use with the calendar widget for homepage. --- root/app/www/public/templates/sonarr/homepage.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/root/app/www/public/templates/sonarr/homepage.json b/root/app/www/public/templates/sonarr/homepage.json index f1f177e..673cc71 100644 --- a/root/app/www/public/templates/sonarr/homepage.json +++ b/root/app/www/public/templates/sonarr/homepage.json @@ -1,4 +1,7 @@ { + "/api/v3/calendar": [ + "get" + ], "/api/v3/wanted/missing": [ "get" ], @@ -11,4 +14,4 @@ "/api/v3/series": [ "get" ] -} \ No newline at end of file +} From d6dbddc3866b9c03e79ed0eaceeaa820647e440c Mon Sep 17 00:00:00 2001 From: GeNomeZ <115205222+genomez@users.noreply.github.com> Date: Sun, 17 Nov 2024 12:59:13 -0600 Subject: [PATCH 3/3] Update bazarr.json Added "/api/v3/filesystem" and "/api/v3/series" --- root/app/www/public/templates/sonarr/bazarr.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/root/app/www/public/templates/sonarr/bazarr.json b/root/app/www/public/templates/sonarr/bazarr.json index 54b491c..5607ae3 100644 --- a/root/app/www/public/templates/sonarr/bazarr.json +++ b/root/app/www/public/templates/sonarr/bazarr.json @@ -14,12 +14,18 @@ "/api/v3/episodefile/{id}": [ "get" ], + "/api/v3/filesystem": [ + "get" + ], "/api/v3/mediacover/{seriesId}/{filename}": [ "get" ], "/api/v3/rootfolder": [ "get" ], + "/api/v3/series": [ + "get" + ], "/api/v3/series/{id}": [ "get" ], @@ -32,4 +38,4 @@ "/api/system/status": [ "get" ] -} \ No newline at end of file +}