Skip to content

Commit e195b6d

Browse files
Jason KimJason Kim
authored andcommitted
SearchAllPages temporarily removed from the list of REST APIs
1 parent 1d3286b commit e195b6d

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

iOS-REST-API-Explorer/OneNoteManager.m

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ - (instancetype)init{
5555
[pagesArray addObject:[self createPageWithWebPageSnapshot]];
5656
[pagesArray addObject:[self getAllPages]];
5757
[pagesArray addObject:[self getPagesSkipAndTop]];
58-
[pagesArray addObject:[self searchAllPages]];
58+
// This is not working at this time.
59+
// [pagesArray addObject:[self searchAllPages]];
5960
[pagesArray addObject:[self getPageAsHTML]];
6061
[pagesArray addObject:[self getPageSpecificMetadata]];
6162
[pagesArray addObject:[self getSortedListOfPagesWithSelectedMetadata]];
@@ -523,11 +524,9 @@ - (Operation*) getPagesSkipAndTop{
523524

524525

525526

526-
// This function does not work
527-
528-
529-
//Search all pages and return the paginated list of matching pages that contain the given
530-
//search term (case-insensitive search)
527+
// This function does not work at the moment. We will update it once it is ready.
528+
// Search all pages and return the paginated list of matching pages that contain the given
529+
// search term (case-insensitive search)
531530
- (Operation*) searchAllPages{
532531
return [[Operation alloc] initWithOperationName:@"GET: Search all pages"
533532
urlString:[self createURLString:[NSString stringWithFormat:@"me/notes/sections/{%@}/pages", ParamsPageIDKey]]

0 commit comments

Comments
 (0)