mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
d6c22df6d7
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
8 lines
262 B
JavaScript
8 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')
|
|
});
|