mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
2bec1db541
// FREEBIE
27 lines
554 B
Objective-C
27 lines
554 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "SelectRecipientViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol AddToGroupViewControllerDelegate <NSObject>
|
|
|
|
- (void)recipientIdWasAdded:(NSString *)recipientId;
|
|
|
|
- (BOOL)isRecipientGroupMember:(NSString *)recipientId;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface AddToGroupViewController : SelectRecipientViewController
|
|
|
|
@property (nonatomic, weak) id<AddToGroupViewControllerDelegate> addToGroupDelegate;
|
|
|
|
@property (nonatomic) BOOL hideContacts;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|