forked from andyburke/autonomous.contact
refactor: events to a pure stream instead of being part of topics
NOTE: tests are passing, but the client is broken
This commit is contained in:
parent
c34069066d
commit
a5707e2f81
31 changed files with 934 additions and 686 deletions
23
public/api/channels/:channel_id/README.md
Normal file
23
public/api/channels/:channel_id/README.md
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# /api/channels/:channel_id
|
||||
|
||||
Interact with a specific channel.
|
||||
|
||||
## GET /api/channels/:channel_id
|
||||
|
||||
Get the channel specified by `:channel_id`.
|
||||
|
||||
## PUT /api/channels/:channel_id
|
||||
|
||||
Update the channels specified by `:channel_id`.
|
||||
|
||||
Eg:
|
||||
|
||||
```
|
||||
{
|
||||
name?: string;
|
||||
}
|
||||
```
|
||||
|
||||
## DELETE /api/channels/:channel_id
|
||||
|
||||
Delete the channel specified by `:channel_id`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue