mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
c3bb7cb396
No Issue - Routes, views and controllers updated for about page - fix up tests and add redirect check
13 lines
285 B
JavaScript
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;
|