diff --git a/docs/api-introduction.mdx b/docs/api-introduction.mdx index 44e7a92..5a0ef45 100644 --- a/docs/api-introduction.mdx +++ b/docs/api-introduction.mdx @@ -29,5 +29,9 @@ The API is organized into the following categories: - `/api/chat/*` - Chat functionality - `/api/users/*` - User management - `/api/users/stats/*` - User statistics +- `/api/groups/*` - Group management +- `/api/groups/stats/*` - Group statistics +- `/api/teams/*` - Team management +- `/api/teams/stats/*` - Team statistics For detailed information about specific endpoints, see their respective documentation pages. diff --git a/docs/introduction.mdx b/docs/introduction.mdx index dc4ecd9..9541a70 100644 --- a/docs/introduction.mdx +++ b/docs/introduction.mdx @@ -24,12 +24,14 @@ The project follows a modern Next.js 13+ structure with the App Router: ```bash app/ ├── admin/ # Admin dashboard -├── api/ # API routes -│ ├── auth/ # Authentication endpoints -│ ├── chat/ # Chat endpoints -│ └── users/ # User management endpoints -├── components/ # Reusable components -└── settings/ # User settings +├── api/ # API routes +│ ├── auth/ # Authentication endpoints +│ ├── chat/ # Chat endpoints +│ ├── users/ # User management endpoints +│ ├── groups/ # Group management endpoints +│ └── teams/ # Team management endpoints +├── components/ # Reusable components +└── settings/ # User settings ``` ## Getting Started diff --git a/docs/mint.json b/docs/mint.json index a12b686..bbff4e8 100644 --- a/docs/mint.json +++ b/docs/mint.json @@ -31,7 +31,14 @@ }, { "group": "API Reference", - "pages": ["api-introduction", "api-authentication", "api-chat", "api-users"] + "pages": [ + "api-introduction", + "api-authentication", + "api-chat", + "api-users", + "api-groups", + "api-teams" + ] } ] -} +} \ No newline at end of file