
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
25 lines
819 B
Objective-C
25 lines
819 B
Objective-C
//
|
||
// Api+SuperAdmin.h
|
||
// YuMi
|
||
//
|
||
// Created by P on 2025/1/17.
|
||
//
|
||
|
||
#import "Api.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface Api(SuperAdmin)
|
||
// type: 操作类型 1、解除进房限制;2、锁麦;3、闭麦;4、抱TA下麦;5、踢出房间;6、加入黑名单;7、关闭房间;8、隐藏房间;9、关闭公屏消息;10、开启公屏消息;11、移除黑名单
|
||
+ (void)superAdminOperate:(HttpRequestHelperCompletion)complection
|
||
uid:(NSString *)uid
|
||
roomUid:(NSString *)roomUid
|
||
targetUid:(NSString *)targetUid
|
||
operateType:(NSNumber *)type;
|
||
// type: 0.关闭隐藏 1.开启隐藏
|
||
+ (void)superAdminOperateRoom:(HttpRequestHelperCompletion)complection roomUid:(NSString *)roomUid type:(NSNumber *)type;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|