Fix deprecations in admin groups interface

This commit is contained in:
Robin Ward
2015-08-13 10:01:29 -04:00
parent a8d20c623f
commit 0442457e7b
8 changed files with 42 additions and 45 deletions

View File

@@ -0,0 +1,9 @@
export default Ember.Component.extend({
classNames: ["item"],
actions: {
remove() {
this.sendAction('removeAction', this.get('member'));
}
}
});