提交
This commit is contained in:
31
TUIKit/TUIChat/CommonModel/TUIChatConversationModel.m
Normal file
31
TUIKit/TUIChat/CommonModel/TUIChatConversationModel.m
Normal file
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// TUIChatConversationModel.m
|
||||
// TXIMSDK_TUIKit_iOS
|
||||
//
|
||||
// Created by kayev on 2021/8/12.
|
||||
// Copyright © 2023 Tencent. All rights reserved.
|
||||
//
|
||||
|
||||
#import "TUIChatConversationModel.h"
|
||||
|
||||
@implementation TUIChatConversationModel
|
||||
|
||||
- (instancetype)init {
|
||||
self = [super init];
|
||||
if (self){
|
||||
self.msgNeedReadReceipt = YES;
|
||||
self.enableVideoCall = YES;
|
||||
self.enableAudioCall = YES;
|
||||
self.enableRoom = YES;
|
||||
self.enableWelcomeCustomMessage = YES;
|
||||
self.isLimitedPortraitOrientation = NO;
|
||||
self.enablePoll = YES;
|
||||
self.enableGroupNote = YES;
|
||||
self.enableTakePhoto = YES;
|
||||
self.enableRecordVideo = YES;
|
||||
self.enableAlbum = YES;
|
||||
self.enableFile = YES;
|
||||
}
|
||||
return self;
|
||||
}
|
||||
@end
|
||||
Reference in New Issue
Block a user