0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Remove limit from ember post API calls

ref #3004

- this is unnecessary and causing bugs
This commit is contained in:
Hannah Wolfe 2014-06-20 11:40:32 +01:00
parent 0c00692799
commit 74205134ef

View file

@ -4,8 +4,7 @@ import AuthenticatedRoute from 'ghost/routes/authenticated';
var paginationSettings = {
status: 'all',
staticPages: 'all',
page: 1,
limit: 15
page: 1
};
var PostsRoute = AuthenticatedRoute.extend(styleBody, {