chore: add wizard reset debug action
This commit is contained in:
parent
42e90ae4a0
commit
6851730dbc
|
@ -149,7 +149,7 @@ extension HomeTimelineViewController {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
UIAction(
|
UIAction(
|
||||||
title: "notification badge +1",
|
title: "Notification badge +1",
|
||||||
image: UIImage(systemName: "1.circle.fill"),
|
image: UIImage(systemName: "1.circle.fill"),
|
||||||
identifier: nil,
|
identifier: nil,
|
||||||
attributes: [],
|
attributes: [],
|
||||||
|
@ -160,7 +160,17 @@ extension HomeTimelineViewController {
|
||||||
UserDefaults.shared.increaseNotificationCount(accessToken: accessToken)
|
UserDefaults.shared.increaseNotificationCount(accessToken: accessToken)
|
||||||
self.context.notificationService.applicationIconBadgeNeedsUpdate.send()
|
self.context.notificationService.applicationIconBadgeNeedsUpdate.send()
|
||||||
}
|
}
|
||||||
)
|
),
|
||||||
|
UIAction(
|
||||||
|
title: "Enable account switcher wizard",
|
||||||
|
image: UIImage(systemName: "square.stack.3d.down.forward.fill"),
|
||||||
|
identifier: nil,
|
||||||
|
attributes: [],
|
||||||
|
state: .off,
|
||||||
|
handler: { _ in
|
||||||
|
UserDefaults.shared.didShowMultipleAccountSwitchWizard = false
|
||||||
|
}
|
||||||
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue