aboutsummaryrefslogtreecommitdiffstats
path: root/Wireguard/Coordinators
diff options
context:
space:
mode:
authorJeroen Leenarts <jeroen.leenarts@gmail.com>2018-05-24 20:14:01 +0200
committerJeroen Leenarts <jeroen.leenarts@gmail.com>2018-05-24 20:16:17 +0200
commite6c6fd0b347f969749184f7192906eaf5d6a601b (patch)
tree0fc332eb910ecafb802375321d7e6807ee1af300 /Wireguard/Coordinators
parentFix casing from Wireguard to WireGuard. (diff)
downloadwireguard-apple-e6c6fd0b347f969749184f7192906eaf5d6a601b.tar.xz
wireguard-apple-e6c6fd0b347f969749184f7192906eaf5d6a601b.zip
Basic setup of ConnectionsTableViewController.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'Wireguard/Coordinators')
-rw-r--r--Wireguard/Coordinators/AppCoordinator.swift10
1 files changed, 7 insertions, 3 deletions
diff --git a/Wireguard/Coordinators/AppCoordinator.swift b/Wireguard/Coordinators/AppCoordinator.swift
index 442a54f..b03807f 100644
--- a/Wireguard/Coordinators/AppCoordinator.swift
+++ b/Wireguard/Coordinators/AppCoordinator.swift
@@ -86,17 +86,21 @@ class AppCoordinator: RootViewCoordinator {
extension AppCoordinator: ConnectionsTableViewControllerDelegate {
func addProvider(connectionsTableViewController: ConnectionsTableViewController) {
// TODO implement
+ print("Add provider")
}
- func settings(connectionsTableViewController: ConnectionsTableViewController) {
+ func connect(profile: Profile, connectionsTableViewController: ConnectionsTableViewController) {
// TODO implement
+ print("connect profile \(profile)")
}
- func connect(profile: Profile) {
+ func configure(profile: Profile, connectionsTableViewController: ConnectionsTableViewController) {
// TODO implement
+ print("configure profile \(profile)")
}
- func delete(profile: Profile) {
+ func delete(profile: Profile, connectionsTableViewController: ConnectionsTableViewController) {
// TODO implement
+ print("delete profile \(profile)")
}
}