Added accessibilityIds to thread settings switches

pull/1012/head
Morgan Pretty 7 months ago
parent 789a887d42
commit d508972d32

@ -588,7 +588,8 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
.boolValue( .boolValue(
threadViewModel.threadOnlyNotifyForMentions == true, threadViewModel.threadOnlyNotifyForMentions == true,
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadOnlyNotifyForMentions == true) oldValue: ((previous?.threadViewModel ?? threadViewModel).threadOnlyNotifyForMentions == true)
) ),
Accessibility(identifier: "Notify for Mentions Only - Switch")
), ),
isEnabled: ( isEnabled: (
( (
@ -629,7 +630,8 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
.boolValue( .boolValue(
threadViewModel.threadMutedUntilTimestamp != nil, threadViewModel.threadMutedUntilTimestamp != nil,
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadMutedUntilTimestamp != nil) oldValue: ((previous?.threadViewModel ?? threadViewModel).threadMutedUntilTimestamp != nil)
) ),
Accessibility(identifier: "Mute - Switch")
), ),
isEnabled: ( isEnabled: (
( (
@ -678,7 +680,8 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
.boolValue( .boolValue(
threadViewModel.threadIsBlocked == true, threadViewModel.threadIsBlocked == true,
oldValue: ((previous?.threadViewModel ?? threadViewModel).threadIsBlocked == true) oldValue: ((previous?.threadViewModel ?? threadViewModel).threadIsBlocked == true)
) ),
Accessibility(identifier: "Block This User - Switch")
), ),
accessibility: Accessibility( accessibility: Accessibility(
identifier: "\(ThreadSettingsViewModel.self).block", identifier: "\(ThreadSettingsViewModel.self).block",

Loading…
Cancel
Save