Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/api-introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
14 changes: 8 additions & 6 deletions docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 9 additions & 2 deletions docs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]
}
}