feature: rooms and events implemented on the backend
This commit is contained in:
parent
df00324e24
commit
85024c6e62
29 changed files with 1659 additions and 115 deletions
21
public/api/users/:user_id/README.md
Normal file
21
public/api/users/:user_id/README.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# /api/users/:user_id
|
||||
|
||||
Interact with a specific user.
|
||||
|
||||
## GET /api/users/:user_id
|
||||
|
||||
Get the user specified by `:user_id`. (user match/admin)
|
||||
|
||||
## PUT /api/users/:user_id
|
||||
|
||||
Update the user specified by `:user_id`. (user match/admin)
|
||||
|
||||
```
|
||||
{
|
||||
username?: string; // update username
|
||||
}
|
||||
```
|
||||
|
||||
## DELETE /api/users/:user_id
|
||||
|
||||
Delete the user specified by `:user_id`. (user match/admin)
|
Loading…
Add table
Add a link
Reference in a new issue