Skip to content

Commit 96cef25

Browse files
authored
Merge pull request #508 from integer32llc/show-all-categories
On /categories, change the # per page to be 100
2 parents 0288ef9 + 3581f7e commit 96cef25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { computed } = Ember;
66
export default Ember.Controller.extend(PaginationMixin, {
77
queryParams: ['page', 'per_page', 'sort'],
88
page: '1',
9-
per_page: 10,
9+
per_page: 100,
1010
sort: 'alpha',
1111

1212
totalItems: computed.readOnly('model.meta.total'),

0 commit comments

Comments
 (0)