
This commit introduces a comprehensive chore management system, allowing users to create, manage, and track both personal and group chores. Key changes include: - Addition of new API endpoints for personal and group chores in `be/app/api/v1/endpoints/chores.py`. - Implementation of chore models and schemas to support the new functionality in `be/app/models.py` and `be/app/schemas/chore.py`. - Integration of chore services in the frontend to handle API interactions for chore management. - Creation of new Vue components for displaying and managing chores, including `ChoresPage.vue` and `PersonalChoresPage.vue`. - Updates to the router to include chore-related routes and navigation. This feature enhances user collaboration and organization within shared living environments, aligning with the project's goal of streamlining household management.
25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import health
|
|
from app.api.v1.endpoints import groups
|
|
from app.api.v1.endpoints import invites
|
|
from app.api.v1.endpoints import lists
|
|
from app.api.v1.endpoints import items
|
|
from app.api.v1.endpoints import ocr
|
|
from app.api.v1.endpoints import costs
|
|
from app.api.v1.endpoints import financials
|
|
from app.api.v1.endpoints import chores
|
|
|
|
api_router_v1 = APIRouter()
|
|
|
|
api_router_v1.include_router(health.router)
|
|
api_router_v1.include_router(groups.router, prefix="/groups", tags=["Groups"])
|
|
api_router_v1.include_router(invites.router, prefix="/invites", tags=["Invites"])
|
|
api_router_v1.include_router(lists.router, prefix="/lists", tags=["Lists"])
|
|
api_router_v1.include_router(items.router, tags=["Items"])
|
|
api_router_v1.include_router(ocr.router, prefix="/ocr", tags=["OCR"])
|
|
api_router_v1.include_router(costs.router, prefix="/costs", tags=["Costs"])
|
|
api_router_v1.include_router(financials.router)
|
|
api_router_v1.include_router(chores.router, prefix="/chores", tags=["Chores"])
|
|
# Add other v1 endpoint routers here later
|
|
# e.g., api_router_v1.include_router(users.router, prefix="/users", tags=["Users"]) |