diff --git a/README.md b/README.md index 71cfcc3..cf67e05 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ There are some pre-built templates that enable just the api access the app actua - Prowlarr - Qui\* - Recyclarr\* +- Ruddarr - Seerr\* - TitleCardMaker - Unmanic diff --git a/root/app/www/public/templates/radarr/ruddarr.json b/root/app/www/public/templates/radarr/ruddarr.json new file mode 100644 index 0000000..974cf04 --- /dev/null +++ b/root/app/www/public/templates/radarr/ruddarr.json @@ -0,0 +1,73 @@ +{ + "/api/v3/calendar": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/diskspace": [ + "get" + ], + "/api/v3/extrafile": [ + "get" + ], + "/api/v3/history": [ + "get" + ], + "/api/v3/history/movie": [ + "get" + ], + "/api/v3/manualimport": [ + "get" + ], + "/api/v3/movie": [ + "get", + "post" + ], + "/api/v3/movie/{id}": [ + "get", + "delete" + ], + "/api/v3/movie/editor": [ + "put" + ], + "/api/v3/movie/lookup": [ + "get" + ], + "/api/v3/moviefile": [ + "get" + ], + "/api/v3/moviefile/{id}": [ + "delete" + ], + "/api/v3/notification": [ + "get", + "post" + ], + "/api/v3/notification/{id}": [ + "put", + "delete" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/queue/{id}": [ + "delete" + ], + "/api/v3/release": [ + "get", + "post" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/tag": [ + "get" + ] +} diff --git a/root/app/www/public/templates/sonarr/ruddarr.json b/root/app/www/public/templates/sonarr/ruddarr.json new file mode 100644 index 0000000..2f48ea3 --- /dev/null +++ b/root/app/www/public/templates/sonarr/ruddarr.json @@ -0,0 +1,77 @@ +{ + "/api/v3/calendar": [ + "get" + ], + "/api/v3/command": [ + "post" + ], + "/api/v3/diskspace": [ + "get" + ], + "/api/v3/episode": [ + "get" + ], + "/api/v3/episode/monitor": [ + "put" + ], + "/api/v3/episodefile": [ + "get" + ], + "/api/v3/episodefile/{id}": [ + "delete" + ], + "/api/v3/episodefile/bulk": [ + "delete" + ], + "/api/v3/history": [ + "get" + ], + "/api/v3/manualimport": [ + "get" + ], + "/api/v3/notification": [ + "get", + "post" + ], + "/api/v3/notification/{id}": [ + "put", + "delete" + ], + "/api/v3/qualityprofile": [ + "get" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/queue/{id}": [ + "delete" + ], + "/api/v3/release": [ + "get", + "post" + ], + "/api/v3/rootfolder": [ + "get" + ], + "/api/v3/series": [ + "get", + "post" + ], + "/api/v3/series/{id}": [ + "get", + "put", + "delete" + ], + "/api/v3/series/editor": [ + "put" + ], + "/api/v3/series/lookup": [ + "get" + ], + "/api/v3/system/status": [ + "get" + ], + "/api/v3/tag": [ + "get" + ] +}