You've already forked RekomenciBackend
feat(): migrate to auth identity
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user