mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:56:36 +08:00
Don't use __container__ instead use needs: ['user-notifications'], (thanks eviltrout!)
This commit is contained in:
parent
8f390c979b
commit
ac708b4068
|
@ -1,5 +1,6 @@
|
|||
|
||||
export default Ember.ArrayController.extend({
|
||||
needs: ['user-notifications'],
|
||||
canLoadMore: true,
|
||||
loading: false,
|
||||
showDismissButton: function() {
|
||||
|
@ -8,9 +9,9 @@ export default Ember.ArrayController.extend({
|
|||
|
||||
actions: {
|
||||
resetNew: function() {
|
||||
var self = this;
|
||||
Discourse.NotificationContainer.resetNew().then(function() {
|
||||
var c = Discourse.__container__.lookup("controller:UserNotifications")
|
||||
c.setEach("read", true)
|
||||
self.get('controllers.user-notifications').setEach('read', true);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user