Skip to content

Commit

Permalink
feat(webinar): fix issues found by coderabbitai
Browse files Browse the repository at this point in the history
  • Loading branch information
mickelr committed Nov 14, 2024
1 parent aebbbc7 commit 2a24f75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@ export default class ControlsOptionsManager {
* @memberof ControlsOptionsManager
* @returns {Promise}
*/
private setControls(setting: {[key in Setting]?: any}): Promise<any> {
private setControls(setting: {
[Setting.muted]?: boolean;
[Setting.disallowUnmute]?: boolean;
[Setting.muteOnEntry]?: boolean;
[Setting.roles]?: Array<string>;
}): Promise<any> {
LoggerProxy.logger.log(
`ControlsOptionsManager:index#setControls --> ${JSON.stringify(setting)}`
);
Expand Down
3 changes: 1 addition & 2 deletions packages/@webex/plugin-meetings/src/meeting/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3017,8 +3017,7 @@ export default class Meeting extends StatelessWebexPlugin {
/**
* Set up the locus info resources link listener
* update the locusInfo for webcast instance url
* does not currently re-emit the event as it's internal only
* payload is unused
* @param {Object} payload - The event payload
* @returns {undefined}
* @private
* @memberof Meeting
Expand Down

0 comments on commit 2a24f75

Please sign in to comment.