src/auth/routes.py : route /auth/signup (#73)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-04-20 17:37:15 +02:00
parent 1c0fb0a960
commit e275f10dbd
3 changed files with 105 additions and 1 deletions
+2
View File
@@ -18,7 +18,9 @@ def app(users_db_path, monkeypatch):
from src.auth.setup import init_auth
monkeypatch.setenv("SECRET_KEY", "test-secret-key")
app = Flask(__name__)
app.config["WTF_CSRF_ENABLED"] = False
init_auth(app)
yield app