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