
- 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
29 lines
861 B
Objective-C
29 lines
861 B
Objective-C
//
|
|
// Api+SuperAdmin.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/1/17.
|
|
//
|
|
|
|
#import "Api+SuperAdmin.h"
|
|
|
|
@implementation Api(SuperAdmin)
|
|
|
|
+ (void)superAdminOperate:(HttpRequestHelperCompletion)complection
|
|
uid:(NSString *)uid
|
|
roomUid:(NSString *)roomUid
|
|
targetUid:(NSString *)targetUid
|
|
operateType:(NSNumber *)type {
|
|
[self makeRequest:@"super/admin/operate/save"
|
|
method:HttpRequestHelperMethodPOST
|
|
completion:complection, __FUNCTION__, uid, roomUid, targetUid, type, nil];
|
|
}
|
|
|
|
+ (void)superAdminOperateRoom:(HttpRequestHelperCompletion)complection roomUid:(NSString *)roomUid type:(NSNumber *)type {
|
|
[self makeRequest:@"super/hide/room"
|
|
method:HttpRequestHelperMethodPOST
|
|
completion:complection, __FUNCTION__, roomUid, type, nil];
|
|
}
|
|
|
|
@end
|