Merge pull request #1012 from mpretty-cyro/fix/convo-settings-accessibility-id

Added accessibilityIds to thread settings switches
pull/1013/head
Morgan Pretty 7 months ago committed by GitHub
commit 6cb3bdbcad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save