summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2021-07-12 11:50:19 -0400
committermorpheus65535 <[email protected]>2021-07-12 11:50:19 -0400
commit24283992066b8cbafed815bf6be253a93ac06a30 (patch)
tree25a9af3f7d3c04ce12a360ab498a837aaa4a1938
parent0a1ad41f9df173bff7eb053334c50d593f51fd75 (diff)
downloadbazarr-0.9.6-beta.41.tar.gz
bazarr-0.9.6-beta.41.zip
Added missing authentication on system/status API endpoint. #1467v0.9.6-beta.41
-rw-r--r--bazarr/api.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bazarr/api.py b/bazarr/api.py
index 95a9b8e03..aea8198aa 100644
--- a/bazarr/api.py
+++ b/bazarr/api.py
@@ -592,6 +592,7 @@ class SystemLogs(Resource):
class SystemStatus(Resource):
+ @authenticate
def get(self):
system_status = {}
system_status.update({'bazarr_version': os.environ["BAZARR_VERSION"]})