
- 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
729 B
Objective-C
25 lines
729 B
Objective-C
//
|
|
// YMMonentsPublishPresenter.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/7/1.
|
|
//
|
|
|
|
#import "XPMonentsPublishPresenter.h"
|
|
#import "Api+Moments.h"
|
|
#import "XPMonentsPublishProtocol.h"
|
|
#import "AccountInfoStorage.h"
|
|
|
|
@implementation XPMonentsPublishPresenter
|
|
|
|
- (void)publishMonents:(NSString *)worldId type:(MonentsContentType)type content:(NSString *)content resList:(NSArray *)resList {
|
|
NSString * uid = [AccountInfoStorage instance].getUid;
|
|
NSString * typeStr = [NSString stringWithFormat:@"%ld", type];
|
|
[Api momentsPublish:[self createHttpCompletion:^(BaseModel * _Nonnull data) {
|
|
[[self getView] publishMonentsSuccess];
|
|
} showLoading:YES] uid:uid type:typeStr worldId:worldId content:content resList:resList];
|
|
}
|
|
|
|
|
|
@end
|