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
23
public/api/rooms/:room_id/README.md
Normal file
23
public/api/rooms/:room_id/README.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# /api/rooms/:room_id
|
||||
|
||||
Interact with a specific room.
|
||||
|
||||
## GET /api/rooms/:room_id
|
||||
|
||||
Get the room specified by `:room_id`.
|
||||
|
||||
## PUT /api/rooms/:room_id
|
||||
|
||||
Update the rooms specified by `:room_id`.
|
||||
|
||||
Eg:
|
||||
|
||||
```
|
||||
{
|
||||
name?: string;
|
||||
}
|
||||
```
|
||||
|
||||
## DELETE /api/rooms/:room_id
|
||||
|
||||
Delete the room specified by `:room_id`.
|
Loading…
Add table
Add a link
Reference in a new issue