Phase 1 (Foundation): - Project restructure (presenton-main → backend/ + frontend/) - Database schema (8 new models, Alembic config, seed script) - Auth (Azure AD SSO + dev bypass, JWT sessions, AuthMiddleware) - RBAC (access_service, rbac_middleware, admin routers) - Audit logging (fire-and-forget, AuditMiddleware, admin router) - i18n (react-i18next with 5 namespace files) Phase 2 (Admin Panel & Client Management): - Admin panel shell (sidebar layout, role guard, 12 pages) - Redux admin slice with 18 async thunks - User management (role changes, deactivation) - Client management (CRUD, brand config, team management) - Brand config editor (colors, fonts, logos, voice rules) - Master deck upload & parser (PPTX → HTML → React pipeline) - Audit log viewer with filters and CSV/JSON export Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
926 B
Python
34 lines
926 B
Python
import uuid
|
|
from fastapi import APIRouter
|
|
from models.api_error_model import APIErrorModel
|
|
from models.presentation_and_path import PresentationPathAndEditPath
|
|
from typing import List
|
|
|
|
API_V1_MOCK_ROUTER = APIRouter(prefix="/api/v1/mock", tags=["Mock"])
|
|
|
|
|
|
@API_V1_MOCK_ROUTER.get(
|
|
"/presentation-generation-completed",
|
|
response_model=List[PresentationPathAndEditPath],
|
|
)
|
|
async def mock_presentation_generation_completed():
|
|
return [
|
|
PresentationPathAndEditPath(
|
|
presentation_id=uuid.uuid4(),
|
|
path="/app_data/exports/test.pdf",
|
|
edit_path="/presentation?id=123",
|
|
)
|
|
]
|
|
|
|
|
|
@API_V1_MOCK_ROUTER.get(
|
|
"/presentation-generation-failed",
|
|
response_model=List[APIErrorModel],
|
|
)
|
|
async def mock_presentation_generation_completed():
|
|
return [
|
|
APIErrorModel(
|
|
status_code=500,
|
|
detail="Presentation generation failed",
|
|
)
|
|
]
|