first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:40:14 +03:00
commit e04ba85564
129 changed files with 17541 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# Admin User Management API
Bu doküman admin panel için kullanıcı yönetimi endpointlerini açıklar.
## Base Path
`/admin/users`
## Endpointler
### 1. Kullanıcı Listesi
`GET /admin/users`
#### Query Params
- `page` (optional)
- `limit` (optional)
- `search` (optional)
- `status` (optional)
#### Response
```json
{
"data": [],
"pagination": {
"page": 1,
"limit": 10,
"total": 0
}
}