Skip to content
Snippets Groups Projects
Commit 88195f00 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Merge branch 'fix/messenger-lookup-contacts-missing' into 'development'

Add missing function to Messenger interface

See merge request elixxir/elixxir-dapps-sdk-swift!95
parents cb0f1a80 d49a275b
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!95Add missing function to Messenger interface
......@@ -23,6 +23,7 @@ public struct Messenger {
public var destroy: MessengerDestroy
public var searchContacts: MessengerSearchContacts
public var lookupContact: MessengerLookupContact
public var lookupContacts: MessengerLookupContacts
public var registerForNotifications: MessengerRegisterForNotifications
public var verifyContact: MessengerVerifyContact
public var sendMessage: MessengerSendMessage
......@@ -53,6 +54,7 @@ extension Messenger {
destroy: .live(env),
searchContacts: .live(env),
lookupContact: .live(env),
lookupContacts: .live(env),
registerForNotifications: .live(env),
verifyContact: .live(env),
sendMessage: .live(env)
......@@ -84,6 +86,7 @@ extension Messenger {
destroy: .unimplemented,
searchContacts: .unimplemented,
lookupContact: .unimplemented,
lookupContacts: .unimplemented,
registerForNotifications: .unimplemented,
verifyContact: .unimplemented,
sendMessage: .unimplemented
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment