Add authentication routes and tests for API
Some checks failed
Build and Push Docker Images / build-frontend (push) Blocked by required conditions
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Has been cancelled

Implemented comprehensive authentication endpoints including user registration, login, token refresh, password change, and user info retrieval. Added extensive test cases for these endpoints to ensure functionality and error handling.
This commit is contained in:
2025-03-04 18:33:16 +01:00
parent 5ddf5cab6d
commit c6fe040f21
4 changed files with 599 additions and 2 deletions

View File

@@ -3,4 +3,4 @@ from fastapi import APIRouter
from app.api.routes import auth
api_router = APIRouter()
api_router.include_router(auth.router, tags=["auth"])
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])