ef0178cd06
refs https://github.com/TryGhost/Ghost/issues/14101 - migrated to full native class syntax - removed loading of snippets as they are not needed on post lists (they are needed on the editor screen which does it's own loading) - removed `access` query param definition leftover from earlier development - removed use of `{{action}}` in associated templates
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
import PostsLoadingController from './posts-loading';
|
|
import {inject as controller} from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class PagesLoadingController extends PostsLoadingController {
|
|
@controller('pages') postsController;
|
|
|
|
@service ui;
|
|
}
|