1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/controllers/pages-loading.js
Kevin Ansfield f8b03f50b6
🎨 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

7 lines
262 B
JavaScript

import PostsLoadingController from './posts-loading';
import {inject as controller} from '@ember/controller';
/* eslint-disable ghost/ember/alias-model-in-controller */
export default PostsLoadingController.extend({
postsController: controller('pages')
});