feat(): migrate to auth identity

This commit is contained in:
doas root
2025-11-18 00:25:24 +03:00
parent 63a057b020
commit f44e688662
18 changed files with 219 additions and 48 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ from fastapi.middleware.cors import CORSMiddleware
from template_project.web_api.configuration import load_configuration
from template_project.web_api.ioc.make import make_ioc
from template_project.web_api.routes import healthcheck, user
from template_project.web_api.routes import auth, healthcheck
LOG_CONFIG: Final = {
"version": 1,
@@ -62,7 +62,7 @@ def make_asgi_application(
allow_methods=["*"],
allow_headers=["*"],
)
app.include_router(user.router)
app.include_router(auth.router)
app.include_router(healthcheck.router)
setup_dishka(container=ioc, app=app)