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

Add getNotificationReport to Messenger interface

parent 1a6e4ad5
No related branches found
No related tags found
2 merge requests!138Notifications,!102Release 1.0.0
This commit is part of merge request !138. Comments created here will be created in the context of that merge request.
......@@ -47,6 +47,7 @@ public struct Messenger {
public var sendFile: MessengerSendFile
public var receiveFile: MessengerReceiveFile
public var trackServices: MessengerTrackServices
public var getNotificationReport: MessengerGetNotificationReport
}
extension Messenger {
......@@ -97,7 +98,8 @@ extension Messenger {
startFileTransfer: .live(env),
sendFile: .live(env),
receiveFile: .live(env),
trackServices: .live(env)
trackServices: .live(env),
getNotificationReport: .live(env)
)
}
}
......@@ -149,6 +151,7 @@ extension Messenger {
startFileTransfer: .unimplemented,
sendFile: .unimplemented,
receiveFile: .unimplemented,
trackServices: .unimplemented
trackServices: .unimplemented,
getNotificationReport: .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