Skip to content

Commit

Permalink
feat(MeetingsSdkAdapter): add 'hint' for ProceedWithoutCamera and Pro…
Browse files Browse the repository at this point in the history
…ceedWithoutMicrophone controls
  • Loading branch information
coroiandaniel authored and cipak committed Oct 19, 2021
1 parent 3e19f65 commit 07a07ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export default class ProceedWithoutCameraControl extends MeetingControl {
ID: this.ID,
text: 'Proceed without camera',
tooltip: 'Ignore media access prompt and proceed without camera',
hint: 'This setting cannot be changed once the meeting starts.',
});
observer.complete();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe('Proceed Without Camera Control', () => {
ID: 'proceed-without-camera',
text: 'Proceed without camera',
tooltip: 'Ignore media access prompt and proceed without camera',
hint: 'This setting cannot be changed once the meeting starts.',
});
done();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export default class ProceedWithoutMicrophoneControl extends MeetingControl {
ID: this.ID,
text: 'Proceed without microphone',
tooltip: 'Ignore media access prompt and proceed without microphone',
hint: 'This setting cannot be changed once the meeting starts.',
});
observer.complete();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe('Proceed Without Microphone Control', () => {
ID: 'proceed-without-microphone',
text: 'Proceed without microphone',
tooltip: 'Ignore media access prompt and proceed without microphone',
hint: 'This setting cannot be changed once the meeting starts.',
});
done();
});
Expand Down

0 comments on commit 07a07ed

Please sign in to comment.