mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
export default Ember.Component.extend({
|
|
classNames: ["item"],
|
|
|
|
actions: {
|
|
remove() {
|
|
this.sendAction('removeAction', this.get('member'));
|
|
}
|
|
}
|
|
});
|