mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 20:07:52 -05:00
17 lines
345 B
Text
17 lines
345 B
Text
|
import computed from 'ember-addons/ember-computed-decorators';
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
classNames: ['invite-list-user'],
|
||
|
|
||
|
@computed('user.role')
|
||
|
roleName(role) {
|
||
|
return this.get('roles').findProperty('id', role).label;
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
removeUser(user) {
|
||
|
this.sendAction('removeUser', user);
|
||
|
}
|
||
|
}
|
||
|
});
|