- Create companies list page with stats (total, verified, active, vendor count) - Add company creation form with owner account generation - Implement companies.js with full CRUD operations (list, create, edit, delete) - Add Companies menu item to admin sidebar (desktop + mobile) - Create company admin page routes (/admin/companies, /admin/companies/create) - Register companies API router in admin __init__.py Features: - List all companies with pagination - Create company with automatic owner user creation - Display temporary password for new owner accounts - Edit company information - Delete company (only if no vendors) - Toggle active/verified status - Show vendor count per company UI Components: - Stats cards (total companies, verified, active, total vendors) - Company table with status badges - Create form with validation - Success/error messaging - Responsive design with dark mode support
134 lines
4.0 KiB
Python
134 lines
4.0 KiB
Python
# app/api/v1/admin/__init__.py
|
|
"""
|
|
Admin API router aggregation.
|
|
|
|
This module combines all admin-related JSON API endpoints:
|
|
- Authentication (login/logout)
|
|
- Vendor management (CRUD, bulk operations)
|
|
- Vendor domains management (custom domains, DNS verification)
|
|
- Vendor themes management (theme editor, presets)
|
|
- User management (status, roles)
|
|
- Dashboard and statistics
|
|
- Marketplace monitoring
|
|
- Audit logging
|
|
- Platform settings
|
|
- Notifications and alerts
|
|
- Code quality and architecture validation
|
|
|
|
IMPORTANT:
|
|
- This router is for JSON API endpoints only
|
|
- HTML page routes are mounted separately in main.py at /vendor/*
|
|
- Do NOT include pages.router here - it causes route conflicts
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
# Import all admin routers
|
|
from . import (
|
|
audit,
|
|
auth,
|
|
code_quality,
|
|
companies,
|
|
content_pages,
|
|
dashboard,
|
|
logs,
|
|
marketplace,
|
|
monitoring,
|
|
notifications,
|
|
settings,
|
|
users,
|
|
vendor_domains,
|
|
vendor_themes,
|
|
vendors,
|
|
)
|
|
|
|
# Create admin router
|
|
router = APIRouter()
|
|
|
|
|
|
# ============================================================================
|
|
# Authentication & Authorization
|
|
# ============================================================================
|
|
|
|
# Include authentication endpoints
|
|
router.include_router(auth.router, tags=["admin-auth"])
|
|
|
|
|
|
# ============================================================================
|
|
# Company & Vendor Management
|
|
# ============================================================================
|
|
|
|
# Include company management endpoints
|
|
router.include_router(companies.router, tags=["admin-companies"])
|
|
|
|
# Include vendor management endpoints
|
|
router.include_router(vendors.router, tags=["admin-vendors"])
|
|
|
|
# Include vendor domains management endpoints
|
|
router.include_router(vendor_domains.router, tags=["admin-vendor-domains"])
|
|
|
|
# Include vendor themes management endpoints
|
|
router.include_router(vendor_themes.router, tags=["admin-vendor-themes"])
|
|
|
|
# Include content pages management endpoints
|
|
router.include_router(
|
|
content_pages.router, prefix="/content-pages", tags=["admin-content-pages"]
|
|
)
|
|
|
|
|
|
# ============================================================================
|
|
# User Management
|
|
# ============================================================================
|
|
|
|
# Include user management endpoints
|
|
router.include_router(users.router, tags=["admin-users"])
|
|
|
|
|
|
# ============================================================================
|
|
# Dashboard & Statistics
|
|
# ============================================================================
|
|
|
|
# Include dashboard and statistics endpoints
|
|
router.include_router(dashboard.router, tags=["admin-dashboard"])
|
|
|
|
|
|
# ============================================================================
|
|
# Marketplace & Imports
|
|
# ============================================================================
|
|
|
|
# Include marketplace monitoring endpoints
|
|
router.include_router(marketplace.router, tags=["admin-marketplace"])
|
|
|
|
|
|
# ============================================================================
|
|
# Platform Administration
|
|
# ============================================================================
|
|
|
|
# Include monitoring endpoints (placeholder for future implementation)
|
|
# router.include_router(monitoring.router, tags=["admin-monitoring"])
|
|
|
|
# Include audit logging endpoints
|
|
router.include_router(audit.router, tags=["admin-audit"])
|
|
|
|
# Include platform settings endpoints
|
|
router.include_router(settings.router, tags=["admin-settings"])
|
|
|
|
# Include notifications and alerts endpoints
|
|
router.include_router(notifications.router, tags=["admin-notifications"])
|
|
|
|
# Include log management endpoints
|
|
router.include_router(logs.router, tags=["admin-logs"])
|
|
|
|
|
|
# ============================================================================
|
|
# Code Quality & Architecture
|
|
# ============================================================================
|
|
|
|
# Include code quality and architecture validation endpoints
|
|
router.include_router(
|
|
code_quality.router, prefix="/code-quality", tags=["admin-code-quality"]
|
|
)
|
|
|
|
# Export the router
|
|
__all__ = ["router"]
|