Skip to content

Commit

Permalink
Increase the annotation page limit.
Browse files Browse the repository at this point in the history
This is simpler than implementing paged fetches.
  • Loading branch information
manthey committed Aug 29, 2019
1 parent 4d048c0 commit 3e40889
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import AnnotationModel from '../models/AnnotationModel';
export default Collection.extend({
resourceName: 'annotation',
model: AnnotationModel,
pageLimit: 100,
// this is a large number so that we probably never need to page
// annotations.
pageLimit: 10000,
sortField: 'created',
sortDir: SORT_DESC
});

0 comments on commit 3e40889

Please sign in to comment.