summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/main.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/main.py b/backend/main.py
index 028fbfa..7be9c75 100644
--- a/backend/main.py
+++ b/backend/main.py
@@ -460,5 +460,4 @@ def uri_to_information(data: InformationRequestData, response: fastapi.Response,
def notif_subscribe(data: notif.PushSubscriptionData, response: fastapi.Response):
endpoint = notif.subscribe(data)
response.set_cookie(key="subscription_endpoint", value=endpoint, max_age=COOKIE_MAX_AGE, domain="laundryweb.altafcreator.com", samesite="none", secure=True, path="/")
- response.status_code = fastapi.status.HTTP_200_OK
return "do i need to return something perhaps"