mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
573 B
C
21 lines
573 B
C
8 years ago
|
//
|
||
6 years ago
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
6 years ago
|
@class OWSConversationSettingsViewController;
|
||
8 years ago
|
@class TSGroupModel;
|
||
|
|
||
|
@protocol OWSConversationSettingsViewDelegate <NSObject>
|
||
|
|
||
7 years ago
|
- (void)conversationColorWasUpdated;
|
||
8 years ago
|
- (void)groupWasUpdated:(TSGroupModel *)groupModel;
|
||
6 years ago
|
- (void)conversationSettingsDidRequestConversationSearch:(OWSConversationSettingsViewController *)conversationSettingsViewController;
|
||
8 years ago
|
|
||
6 years ago
|
- (void)popAllConversationSettingsViewsWithCompletion:(void (^_Nullable)(void))completionBlock;
|
||
8 years ago
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|