Enable usernames
This commit is contained in:
parent
38da3d3152
commit
43de83f0de
26 changed files with 196 additions and 438 deletions
|
@ -30,7 +30,6 @@ installSetting('typingIndicatorSetting', {
|
|||
});
|
||||
|
||||
installCallback('deleteAllMyStories');
|
||||
installCallback('isPhoneNumberSharingEnabled');
|
||||
installCallback('isPrimary');
|
||||
installCallback('syncRequest');
|
||||
|
||||
|
|
|
@ -62,7 +62,6 @@ SettingsWindowProps.onRender(
|
|||
isHideMenuBarSupported,
|
||||
isMinimizeToAndStartInSystemTraySupported,
|
||||
isNotificationAttentionSupported,
|
||||
isPhoneNumberSharingSupported,
|
||||
isSyncSupported,
|
||||
isSystemTraySupported,
|
||||
lastSyncTime,
|
||||
|
@ -167,7 +166,6 @@ SettingsWindowProps.onRender(
|
|||
isMinimizeToAndStartInSystemTraySupported
|
||||
}
|
||||
isNotificationAttentionSupported={isNotificationAttentionSupported}
|
||||
isPhoneNumberSharingSupported={isPhoneNumberSharingSupported}
|
||||
isSyncSupported={isSyncSupported}
|
||||
isSystemTraySupported={isSystemTraySupported}
|
||||
lastSyncTime={lastSyncTime}
|
||||
|
|
|
@ -83,7 +83,6 @@ const ipcGetAvailableIODevices = createCallback('getAvailableIODevices');
|
|||
const ipcGetCustomColors = createCallback('getCustomColors');
|
||||
const ipcIsSyncNotSupported = createCallback('isPrimary');
|
||||
const ipcMakeSyncRequest = createCallback('syncRequest');
|
||||
const ipcPNP = createCallback('isPhoneNumberSharingEnabled');
|
||||
const ipcDeleteAllMyStories = createCallback('deleteAllMyStories');
|
||||
|
||||
// ChatColorPicker redux hookups
|
||||
|
@ -161,7 +160,6 @@ async function renderPreferences() {
|
|||
hasStoriesDisabled,
|
||||
hasTextFormatting,
|
||||
hasTypingIndicators,
|
||||
isPhoneNumberSharingSupported,
|
||||
lastSyncTime,
|
||||
notificationContent,
|
||||
phoneNumber,
|
||||
|
@ -204,7 +202,6 @@ async function renderPreferences() {
|
|||
hasStoriesDisabled: settingHasStoriesDisabled.getValue(),
|
||||
hasTextFormatting: settingTextFormatting.getValue(),
|
||||
hasTypingIndicators: settingTypingIndicators.getValue(),
|
||||
isPhoneNumberSharingSupported: ipcPNP(),
|
||||
lastSyncTime: settingLastSyncTime.getValue(),
|
||||
notificationContent: settingNotificationSetting.getValue(),
|
||||
phoneNumber: settingPhoneNumber.getValue(),
|
||||
|
@ -312,7 +309,6 @@ async function renderPreferences() {
|
|||
isAutoLaunchSupported: Settings.isAutoLaunchSupported(OS),
|
||||
isHideMenuBarSupported: Settings.isHideMenuBarSupported(OS),
|
||||
isNotificationAttentionSupported: Settings.isDrawAttentionSupported(OS),
|
||||
isPhoneNumberSharingSupported,
|
||||
isSyncSupported: !isSyncNotSupported,
|
||||
isSystemTraySupported: Settings.isSystemTraySupported(
|
||||
OS,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue