Add global setting for sent media quality

This commit is contained in:
Josh Perez 2022-12-02 18:54:37 -05:00 committed by GitHub
parent ee85a97839
commit 1109415dc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 81 additions and 10 deletions

View file

@ -107,6 +107,7 @@ const getDefaultArgs = (): PropsDataType => ({
selectedMicrophone: availableMicrophones[0],
selectedSpeaker: availableSpeakers[1],
shouldShowStoriesSettings: true,
sentMediaQualitySetting: 'standard',
themeSetting: 'system',
universalExpireTimer: DurationInSeconds.HOUR,
whoCanFindMe: PhoneNumberDiscoverability.Discoverable,
@ -158,6 +159,7 @@ export default {
onSelectedCameraChange: { action: true },
onSelectedMicrophoneChange: { action: true },
onSelectedSpeakerChange: { action: true },
onSentMediaQualityChange: { action: true },
onSpellCheckChange: { action: true },
onThemeChange: { action: true },
onUniversalExpireTimerChange: { action: true },