|
|
|
@ -578,6 +578,9 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
|
|
|
|
|
.boolValue(
|
|
|
|
|
threadViewModel.threadOnlyNotifyForMentions == true,
|
|
|
|
|
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadOnlyNotifyForMentions == true)
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Notify for Mentions Only - Switch"
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
@ -619,6 +622,9 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
|
|
|
|
|
.boolValue(
|
|
|
|
|
threadViewModel.threadMutedUntilTimestamp != nil,
|
|
|
|
|
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadMutedUntilTimestamp != nil)
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Mute - Switch"
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
@ -668,6 +674,9 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
|
|
|
|
|
.boolValue(
|
|
|
|
|
threadViewModel.threadIsBlocked == true,
|
|
|
|
|
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadIsBlocked == true)
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Block This User - Switch"
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|