mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
2515a8769e
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;
|