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/about.js
cobbspur 7a374abec4 Fix route for About page
No Issue

- Routes,  views and controllers updated for about page
- fix up tests and add redirect check
2015-05-25 17:06:17 +01:00

13 lines
285 B
JavaScript

import Ember from 'ember';
var AboutController = Ember.Controller.extend({
updateNotificationCount: 0,
actions: {
updateNotificationChange: function (count) {
this.set('updateNotificationCount', count);
}
}
});
export default AboutController;