We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50bdeb commit c5ca2c1Copy full SHA for c5ca2c1
Coding_iOS/Models/ProjectTopics.m
@@ -43,13 +43,15 @@ - (NSDictionary *)toParams
43
@"pageSize" : _pageSize,
44
@"type" : (_queryType == TopicQueryTypeAll ? @"all" : @"my"),
45
@"orderBy" : [NSNumber numberWithInteger:_labelType],
46
- @"labelId" : _labelID
+ @"labelId" : _labelID,
47
+ @"no_content": @(true)
48
};
49
} else {
50
dict = @{@"page" : (_willLoadMore? [NSNumber numberWithInteger:_page.intValue+1] : [NSNumber numberWithInteger:1]),
51
52
- @"orderBy" : [NSNumber numberWithInteger:_labelType]
53
+ @"orderBy" : [NSNumber numberWithInteger:_labelType],
54
55
56
}
57
return dict;
0 commit comments