ServiceTermsModal: Setup all the plumbery for the "Decline" button

This commit is contained in:
manuroe
2019-10-10 11:59:34 +02:00
parent c8dce9903c
commit a72db35c5a
13 changed files with 54 additions and 2 deletions
@@ -211,6 +211,10 @@ final class ServiceTermsModalScreenViewController: UIViewController {
self.viewModel.process(viewAction: .accept)
}
@IBAction private func declineButtonAction(_ sender: Any) {
self.viewModel.process(viewAction: .decline)
}
private func cancelButtonAction() {
self.viewModel.process(viewAction: .cancel)
}