FIX: Fix the logout functionality in core
This commit is contained in:
parent
a13e7d10cf
commit
68659e834a
|
@ -1,5 +1,6 @@
|
|||
import { url } from 'discourse/lib/computed';
|
||||
import { default as computed, observes } from 'ember-addons/ember-computed-decorators';
|
||||
import User from 'discourse/models/user';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNames: ['user-menu'],
|
||||
|
@ -69,6 +70,9 @@ export default Ember.Component.extend({
|
|||
Discourse.ajax("/users/toggle-anon", {method: 'POST'}).then(function(){
|
||||
window.location.reload();
|
||||
});
|
||||
},
|
||||
logout() {
|
||||
User.logout();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue