mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
a4f8088697
closes #2417 - Adds Notification(s)Component - Render notifications in application.hbs - Adds handleError in application route
27 lines
818 B
JavaScript
Executable file
27 lines
818 B
JavaScript
Executable file
import Resolver from 'ember/resolver';
|
|
import initFixtures from 'ghost/fixtures/init';
|
|
import {currentUser, injectCurrentUser} from 'ghost/initializers/current-user';
|
|
import {registerNotifications, injectNotifications} from 'ghost/initializers/notifications';
|
|
import 'ghost/utils/link-view';
|
|
|
|
var App = Ember.Application.extend({
|
|
/**
|
|
* These are debugging flags, they are useful during development
|
|
*/
|
|
LOG_ACTIVE_GENERATION: true,
|
|
LOG_MODULE_RESOLVER: true,
|
|
LOG_TRANSITIONS: true,
|
|
LOG_TRANSITIONS_INTERNAL: true,
|
|
LOG_VIEW_LOOKUPS: true,
|
|
modulePrefix: 'ghost',
|
|
Resolver: Resolver['default']
|
|
});
|
|
|
|
initFixtures();
|
|
|
|
App.initializer(currentUser);
|
|
App.initializer(injectCurrentUser);
|
|
App.initializer(registerNotifications);
|
|
App.initializer(injectNotifications);
|
|
|
|
export default App;
|