From 0f4c1b8ed6f35da6aae2669d4839a30c4dc90271 Mon Sep 17 00:00:00 2001 From: GeNomeZ <115205222+genomez@users.noreply.github.com> Date: Wed, 27 Nov 2024 20:08:34 -0600 Subject: [PATCH] Initital commit for nzb360 (#39) * Initital commit for nzb360 * Initital commit for nzb360 * Initital commit for nzb360 * Update README.md to add nzb360 --- README.md | 1 + .../www/public/templates/prowlarr/nzb360.json | 8 +++ .../www/public/templates/radarr/nzb360.json | 40 ++++++++++++++ .../www/public/templates/sonarr/nzb360.json | 52 +++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 root/app/www/public/templates/prowlarr/nzb360.json create mode 100644 root/app/www/public/templates/radarr/nzb360.json create mode 100644 root/app/www/public/templates/sonarr/nzb360.json diff --git a/README.md b/README.md index c2573c8..1935a34 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ There are some pre-built templates that enable just the api access the app actua - LunaSea - Nabarr - Notifiarr +- Nzb360 - Omegabrr - Overseerr - Recyclarr\* diff --git a/root/app/www/public/templates/prowlarr/nzb360.json b/root/app/www/public/templates/prowlarr/nzb360.json new file mode 100644 index 0000000..be18777 --- /dev/null +++ b/root/app/www/public/templates/prowlarr/nzb360.json @@ -0,0 +1,8 @@ +{ + "/api/v1/indexer/categories": [ + "get" + ], + "/api/v1/search": [ + "get" + ] +} \ No newline at end of file diff --git a/root/app/www/public/templates/radarr/nzb360.json b/root/app/www/public/templates/radarr/nzb360.json new file mode 100644 index 0000000..68316dd --- /dev/null +++ b/root/app/www/public/templates/radarr/nzb360.json @@ -0,0 +1,40 @@ +{ + "/api/v3/history": [ + "get" + ], + "/api/v3/mediacover/{movieId}/{filename}": [ + "get" + ], + "/api/v3/movie": [ + "get", + "put" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/queue/status": [ + "get" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/credit": [ + "get" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/release": [ + "get" + ], + "/api/v3/movie/{id}": [ + "get", + "put" + ], + "/api/v3/tag": [ + "get" + ] +} \ No newline at end of file diff --git a/root/app/www/public/templates/sonarr/nzb360.json b/root/app/www/public/templates/sonarr/nzb360.json new file mode 100644 index 0000000..f905492 --- /dev/null +++ b/root/app/www/public/templates/sonarr/nzb360.json @@ -0,0 +1,52 @@ +{ + "/api/v3/calendar": [ + "get" + ], + "/api/v3/mediacover/{seriesId}/{filename}": [ + "get" + ], + "/api/v3/wanted/missing": [ + "get" + ], + "/api/v3/queue/status": [ + "get" + ], + "/api/v3/series": [ + "get", + "put" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/series/{id}": [ + "get", + "put" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/episode": [ + "get" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/episodefile": [ + "get" + ], + "/api/v3/tag": [ + "get" + ], + "/api/v3/languageprofile": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/episode/{id}": [ + "put" + ] +} \ No newline at end of file