Skip to content

Commit

Permalink
Merge pull request #233 from PiotrLuczko/refactor/docs_channellist_event
Browse files Browse the repository at this point in the history
docs - added channel list events
  • Loading branch information
prawnsalad authored Jan 13, 2020
2 parents e724edc + 967f06d commit 04c33c4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,38 @@ Debugging messages.
~~~


**channel list start**
~~~javascript
{ }
~~~


**channel list**
~~~javascript
[
{
channel: '#channel1',
num_users: 123,
topic: 'My topic',
tags: {},
},
{
channel: '#channel2',
num_users: 456,
topic: 'My topic',
tags: {},
},
...
]
~~~


**channel list end**
~~~javascript
{ }
~~~


**channel info**
~~~javascript
{
Expand Down

0 comments on commit 04c33c4

Please sign in to comment.