docs: detail adding new users via API

pull/188/head
tycrek 1 year ago
parent 4663ce40c9
commit f441844ced
No known key found for this signature in database
GPG Key ID: FF8A54DCE404885A

4
.github/README.md vendored

@ -382,8 +382,10 @@ Other things to note:
| **`GET /user/all`** | Returns a list of all users | Yes |
| **`GET /user/self`** | Returns the current user | No |
| **`GET /user/token/:token`** | Returns the user with the given token | No |
| **`POST /user/reset`** | Resets the current user's **password** (token resets coming soon) | No |
| **`POST /user/reset`** | Resets the current user's **password** (token resets coming soon). Request body must be a JSON object including `username` and `password`. | No |
| **`GET /user/:id`** | Returns the user with the given ID | Yes |
| **`POST /user/new`** | Creates a new user. Request body must be a JSON object including `username` and `password`. You may optionally include `admin` (boolean) or `meta` (object). Returns 400 if fails. | Yes |
## Custom frontends - OUTDATED

Loading…
Cancel
Save