From f5db53e8743d677f23b0c7b945f34de2e42a62f0 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Mon, 2 Nov 2020 14:46:08 +1100 Subject: [PATCH] Implement simple invitation mechanism --- Signal/src/Loki/View Controllers/SettingsVC.swift | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Signal/src/Loki/View Controllers/SettingsVC.swift b/Signal/src/Loki/View Controllers/SettingsVC.swift index 4ea1833b8..cd6e477ac 100644 --- a/Signal/src/Loki/View Controllers/SettingsVC.swift +++ b/Signal/src/Loki/View Controllers/SettingsVC.swift @@ -182,7 +182,9 @@ final class SettingsVC : BaseVC, AvatarViewHelperDelegate { getSeparator(), getSettingButton(withTitle: NSLocalizedString("vc_settings_privacy_button_title", comment: ""), color: Colors.text, action: #selector(showPrivacySettings)), getSeparator(), - getSettingButton(withTitle: NSLocalizedString("vc_settings_notifications_button_title", comment: ""), color: Colors.text, action: #selector(showNotificationSettings)) + getSettingButton(withTitle: NSLocalizedString("vc_settings_notifications_button_title", comment: ""), color: Colors.text, action: #selector(showNotificationSettings)), + getSeparator(), + getSettingButton(withTitle: "Invite", color: Colors.text, action: #selector(sendInvitation)) ] let isMasterDevice = UserDefaults.standard.isMasterDevice if isMasterDevice { @@ -399,6 +401,12 @@ final class SettingsVC : BaseVC, AvatarViewHelperDelegate { let deviceLinksVC = DeviceLinksVC() navigationController!.pushViewController(deviceLinksVC, animated: true) } + + @objc private func sendInvitation() { + let invitation = "Hey, I've been using Session to chat with complete privacy and security. Come join me! Download it at https://getsession.org/. My Session ID is \(userHexEncodedPublicKey)!" + let shareVC = UIActivityViewController(activityItems: [ invitation ], applicationActivities: nil) + navigationController!.present(shareVC, animated: true, completion: nil) + } @objc private func showSeed() { let seedModal = SeedModal()