forked from shadowfacts/Tusker
Add pointless ToS nag before logging in
Thanks, App Review
This commit is contained in:
parent
18f6445a7c
commit
eea0ef258c
|
@ -245,10 +245,17 @@ extension OnboardingViewController {
|
|||
|
||||
extension OnboardingViewController: InstanceSelectorTableViewControllerDelegate {
|
||||
func didSelectInstance(url instanceURL: URL) {
|
||||
let alert = UIAlertController(title: "Terms of Service", message: "By logging in to '\(instanceURL.host!)', you agree to follow all applicable rules and terms of service for that instance.", preferredStyle: .alert)
|
||||
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { [unowned self] _ in
|
||||
self.instanceSelector.tableView.selectRow(at: nil, animated: false, scrollPosition: .none)
|
||||
}))
|
||||
alert.addAction(UIAlertAction(title: "Continue", style: .default, handler: { [unowned self] _ in
|
||||
Task {
|
||||
await self.login(to: instanceURL)
|
||||
instanceSelector.tableView.selectRow(at: nil, animated: true, scrollPosition: .none)
|
||||
self.instanceSelector.tableView.selectRow(at: nil, animated: true, scrollPosition: .none)
|
||||
}
|
||||
}))
|
||||
present(alert, animated: true)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue