Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 254cf9c

Browse files
VianpyroVianpyro
andauthored
Remove user management endpoints, schemas, and related utilities (#10)
Remove email and order management endpoints, schemas, and related utilities - Deleted email confirmation endpoint and its associated request schema. - Removed order management endpoint and its related data. - Eliminated email-related schemas and utilities, including email sending functions and configuration. - Cleaned up user-related schemas for login and registration. - Removed email confirmation HTML template. - Deleted utility functions for security, string manipulation, and hashing. - Cleared out related test cases for authentication, email, and utility functions. Co-authored-by: Vianpyro <vianney@veremme.org>
1 parent d42fcde commit 254cf9c

26 files changed

Lines changed: 0 additions & 1842 deletions

app/models/user.py

Lines changed: 0 additions & 63 deletions
This file was deleted.

app/routes/v1/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44

55
from fastapi import FastAPI
66

7-
from .endpoints.authentication import router as auth_router
8-
from .endpoints.email import router as email_router
9-
from .endpoints.orders import router as order_router
107
from .endpoints.products import router as product_router
118

129
__version__ = "1.2.0"
1310

1411
api = FastAPI(title="ChocoMax Shop API", version=__version__)
1512

16-
api.include_router(auth_router, prefix="/auth", tags=["Authentication"])
17-
api.include_router(email_router, prefix="/email", tags=["Email"])
1813
api.include_router(product_router, prefix="/products", tags=["Products"])
19-
api.include_router(order_router, prefix="/orders", tags=["Orders"])

0 commit comments

Comments
 (0)