Fix key checking

This commit is contained in:
Madis Mägi 2023-08-10 19:35:43 +03:00
parent e496cddcf5
commit fd74c294b1
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ async def view_doorboy_uids(request):
@app.route("/longpoll", stream=True)
async def view_longpoll(request):
response = await request.respond(content_type="text/event-stream")
key = request.headers.get("KEY")
if not key or key not in [DOORBOY_SECRET_FLOOR, DOORBOY_SECRET_WORKSHOP]:
return text("Invalid token")