Skip to content

Commit

Permalink
added ROOM_UPDATE event to Events enum (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkvovik committed Mar 16, 2022
1 parent 298f268 commit 5158ee8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ulms/api-clients",
"version": "5.2.0",
"version": "5.2.1",
"description": "JavaScript API clients for ULMS platform",
"keywords": [],
"homepage": "https://github.com/foxford/ulms-api-clients-js#readme",
Expand Down
3 changes: 2 additions & 1 deletion src/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Event extends Service {

/**
* Events enum
* @returns {{AGENT_UPDATE: string, EVENT_CREATE: string, ROOM_CLOSE: string, ROOM_ENTER: string, ROOM_LEAVE: string}}
* @returns {{AGENT_UPDATE: string, EVENT_CREATE: string, ROOM_CLOSE: string, ROOM_ENTER: string, ROOM_LEAVE: string, ROOM_UPDATE: string}}
*/
static get events() {
return {
Expand All @@ -25,6 +25,7 @@ class Event extends Service {
ROOM_CLOSE: 'room.close',
ROOM_ENTER: 'room.enter',
ROOM_LEAVE: 'room.leave',
ROOM_UPDATE: 'room.update',
}
}

Expand Down

0 comments on commit 5158ee8

Please sign in to comment.