diff --git a/README.md b/README.md index e26935e..7a455a8 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ There are some pre-built templates that enable just the api access the app actua - Autobrr - Bazarr - DAPS +- Homepage - Jellyseerr - Kometa - Nabarr @@ -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) diff --git a/root/app/www/public/templates/prowlarr/homepage.json b/root/app/www/public/templates/prowlarr/homepage.json new file mode 100644 index 0000000..d6f0e89 --- /dev/null +++ b/root/app/www/public/templates/prowlarr/homepage.json @@ -0,0 +1,5 @@ +{ + "/api/v1/indexerstats": [ + "get" + ] +} \ No newline at end of file diff --git a/root/app/www/public/templates/radarr/homepage.json b/root/app/www/public/templates/radarr/homepage.json new file mode 100644 index 0000000..f746603 --- /dev/null +++ b/root/app/www/public/templates/radarr/homepage.json @@ -0,0 +1,14 @@ +{ + "/api/v3/movie": [ + "get" + ], + "/api/v3/movie/{id}": [ + "get" + ], + "/api/v3/queue/details": [ + "get" + ], + "/api/v3/queue/status": [ + "get" + ] +} \ No newline at end of file diff --git a/root/app/www/public/templates/sonarr/homepage.json b/root/app/www/public/templates/sonarr/homepage.json new file mode 100644 index 0000000..f1f177e --- /dev/null +++ b/root/app/www/public/templates/sonarr/homepage.json @@ -0,0 +1,14 @@ +{ + "/api/v3/wanted/missing": [ + "get" + ], + "/api/v3/queue": [ + "get" + ], + "/api/v3/queue/details": [ + "get" + ], + "/api/v3/series": [ + "get" + ] +} \ No newline at end of file