Ghost/ghost/admin/app/models/page.js
Kevin Ansfield d6c22df6d7 🎨 Separated post and page list screens (#1101)
no issue
- added `page` model
- removed `page` param from Post model
- added pages screen with associated links
- added `:type` param to editor screens to work with the right models
- removed post<->page toggle and associated tour item
2019-02-22 10:17:33 +07:00

6 lines
95 B
JavaScript

import PostModel from './post';
export default PostModel.extend({
displayName: 'page'
});