From 3cdcbbe8f78b5e3177e95cee5ae7238d6aeb0d8e Mon Sep 17 00:00:00 2001 From: NguyenND Date: Tue, 19 May 2026 10:20:00 -0400 Subject: [PATCH] 05/19 Fix add key issue --- app/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/__init__.py b/app/__init__.py index 536553a..e3ec825 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -133,6 +133,7 @@ def create_app(config_name: str = 'development') -> Flask: csrf.exempt(folders_bp) csrf.exempt(sharing_bp) csrf.exempt(emergency_bp) + csrf.exempt(webauthn_bp) # ── Global JSON error handlers ───────────────────────────────────────────── # All /api/* routes must return JSON even on unhandled exceptions.