session-ios/Signal/src/Loki/Messaging/FriendRequestViewDelegate.swift
2019-10-15 10:59:09 +11:00

11 lines
506 B
Swift

@objc(LKFriendRequestViewDelegate)
protocol FriendRequestViewDelegate {
/// Implementations of this method should update the thread's friend request status
/// and send a friend request accepted message.
@objc func acceptFriendRequest(_ friendRequest: TSIncomingMessage)
/// Implementations of this method should update the thread's friend request status
/// and remove the prekeys associated with the contact.
@objc func declineFriendRequest(_ friendRequest: TSIncomingMessage)
}