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 2dd5c5218a
commit bdbafc1831

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, {