11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
Discourse.UserDropdownController = Ember.ArrayController.extend(Discourse.HasCurrentUser, {
|
|
showAdminLinks: Em.computed.alias("currentUser.staff"),
|
|
|
|
actions: {
|
|
logout: function() {
|
|
Discourse.logout();
|
|
return false;
|
|
}
|
|
}
|
|
});
|