Skip to content

Commit

Permalink
Added hardcoded values (appName property)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkonst committed Dec 19, 2023
1 parent 40bbea9 commit 33c9ff0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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": "6.9.0",
"version": "6.10.0",
"description": "JavaScript API clients for ULMS platform",
"keywords": [],
"homepage": "https://github.com/foxford/ulms-api-clients-js#readme",
Expand Down
4 changes: 4 additions & 0 deletions src/conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ class Conference extends Service {
RTC_STREAM_UPDATE: 'rtc_stream.update',
}
}

constructor(mqttClient, agentId) {
super(mqttClient, agentId, 'conference.svc.netology-group.services')
}
}

export default Conference
4 changes: 4 additions & 0 deletions src/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class Event extends Service {
ROOM_UPDATE: 'room.update',
}
}

constructor(mqttClient, agentId) {
super(mqttClient, agentId, 'event.svc.netology-group.services')
}
}

export default Event

0 comments on commit 33c9ff0

Please sign in to comment.