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.
24 lines
551 B
C
24 lines
551 B
C
8 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "OWSConversationSettingsViewDelegate.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@class TSGroupThread;
|
||
|
|
||
|
@interface UpdateGroupViewController : UIViewController
|
||
|
|
||
|
@property (nonatomic, weak) id<OWSConversationSettingsViewDelegate> delegate;
|
||
|
|
||
|
// This property _must_ be set before the view is presented.
|
||
|
@property (nonatomic) TSGroupThread *thread;
|
||
|
|
||
|
@property (nonatomic) BOOL shouldEditGroupNameOnAppear;
|
||
|
@property (nonatomic) BOOL shouldEditAvatarOnAppear;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|