From bd8ab8076645061348d1e5c1f43f2c70b70487e0 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 15 Oct 2024 07:03:42 -0600 Subject: [PATCH] Set notification tokens --- frigate/api/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/api/auth.py b/frigate/api/auth.py index 5276eb71eb..8976469f5f 100644 --- a/frigate/api/auth.py +++ b/frigate/api/auth.py @@ -357,6 +357,7 @@ def create_user(request: Request, body: AppPostUsersBody): { User.username: body.username, User.password_hash: password_hash, + User.notification_tokens: [], } ).execute() return JSONResponse(content={"username": body.username})