diff options
| -rw-r--r-- | backend/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/main.py b/backend/main.py index 1a40120..e529c86 100644 --- a/backend/main.py +++ b/backend/main.py @@ -475,8 +475,8 @@ def notif_subscribe(data: notif.PushSubscriptionData, response: fastapi.Response # --- admin login @app.post("/admin_login", response_class=PlainTextResponse) -def admin_login(password: str, response: fastapi.Response): - pass +def admin_login(data: str, response: fastapi.Response): + print(data) # --- override each machine status |
