From 1ed4f5f8cd3fa052570959bb8c07029f710c598b Mon Sep 17 00:00:00 2001 From: Sapphire <16083155+Nypheena@users.noreply.github.com> Date: Sat, 16 Nov 2024 04:56:08 +0100 Subject: [PATCH 1/4] Create LunaSea Template A template for LunaSea Radarr --- .../www/public/templates/radarr/lunasea.json | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 root/app/www/public/templates/radarr/lunasea.json diff --git a/root/app/www/public/templates/radarr/lunasea.json b/root/app/www/public/templates/radarr/lunasea.json new file mode 100644 index 0000000..b3832ca --- /dev/null +++ b/root/app/www/public/templates/radarr/lunasea.json @@ -0,0 +1,84 @@ +{ + "/api/v3/calendar": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/credit": [ + "get" + ], + "/api/v3/diskspace": [ + "get" + ], + "/api/v3/extrafile": [ + "get" + ], + "/api/v3/filesystem": [ + "get" + ], + "/api/v3/history": [ + "get" + ], + "/api/v3/history/movie": [ + "get" + ], + "/api/v3/exclusions": [ + "get" + ], + "/api/v3/importlist/movie": [ + "get" + ], + "/api/v3/language": [ + "get" + ], + "/api/v3/manualimport": [ + "get" + ], + "/api/v3/mediacover/{movieId}/{filename}": [ + "get" + ], + "/api/v3/movie": [ + "get", + "post", + "put" + ], + "/api/v3/movie/{id}": [ + "get" + ], + "/api/v3/moviefile": [ + "get" + ], + "/api/v3/moviefile/{id}": [ + "delete" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/queue/{id}": [ + "delete" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/release": [ + "get", + "post" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/tag": [ + "get", + "post" + ], + "/api/v3/tag/{id}": [ + "delete" + ], + "/api/v3/qualitydefinition": [ + "get" + ] +} From 2f431785246eff602b8a3a3d25b6795297cb9bcf Mon Sep 17 00:00:00 2001 From: Sapphire <16083155+Nypheena@users.noreply.github.com> Date: Sat, 16 Nov 2024 04:57:58 +0100 Subject: [PATCH 2/4] Create LunaSea Template LunaSea Template for Sonarr --- .../www/public/templates/sonarr/lunasea.json | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 root/app/www/public/templates/sonarr/lunasea.json diff --git a/root/app/www/public/templates/sonarr/lunasea.json b/root/app/www/public/templates/sonarr/lunasea.json new file mode 100644 index 0000000..4611548 --- /dev/null +++ b/root/app/www/public/templates/sonarr/lunasea.json @@ -0,0 +1,76 @@ +{ + "/api/v3/calendar": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/episode": [ + "get" + ], + "/api/v3/episode/monitor": [ + "put" + ], + "/api/v3/episodefile": [ + "get" + ], + "/api/v3/episodefile/{id}": [ + "delete" + ], + "/api/v3/history": [ + "get" + ], + "/api/v3/history/series": [ + "get" + ], + "/api/v3/importlistexclusion": [ + "get" + ], + "/api/v3/languageprofile": [ + "get" + ], + "/api/v3/mediacover/{seriesId}/{filename}": [ + "get" + ], + "/api/v3/wanted/missing": [ + "get" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/queue/{id}": [ + "delete" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/queue/details": [ + "get" + ], + "/api/v3/release": [ + "get", + "post" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/series": [ + "get", + "post", + "put" + ], + "/api/v3/series/{id}": [ + "delete", + "get" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/tag": [ + "get", + "post" + ], + "/api/v3/tag/{id}": [ + "delete" + ] +} From bde8b8b7c62efb8bccece5e20f56965d92b6bde2 Mon Sep 17 00:00:00 2001 From: Sapphire <16083155+Nypheena@users.noreply.github.com> Date: Sun, 17 Nov 2024 03:57:15 +0100 Subject: [PATCH 3/4] LunaSea Readme addition --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e26935e..cb3fa2f 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ There are some pre-built templates that enable just the api access the app actua - DAPS - Jellyseerr - Kometa +- LunaSea - Nabarr - Notifiarr - Omegabrr @@ -170,4 +171,4 @@ Easily view apps, what they access, etc Some basic stats -![Apps](root/app/www/public/images/screenshots/stats.png) \ No newline at end of file +![Apps](root/app/www/public/images/screenshots/stats.png) From 18e3c9c2d6644ccec9c4e4912195e4d2b1b8e8b4 Mon Sep 17 00:00:00 2001 From: Sapphire <16083155+Nypheena@users.noreply.github.com> Date: Sun, 17 Nov 2024 04:03:29 +0100 Subject: [PATCH 4/4] Update lunasea.json