1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 21:59:42 +02:00

renamed load() to loadGroups()

This commit is contained in:
sauls8t 2018-02-28 15:51:48 +00:00
parent e4d78904dc
commit 7e6d6366da

View file

@ -81,7 +81,7 @@ export default Component.extend(AuthProvider, ModalMixin, {
} }
this.get('groupSvc').add(newGroup).then(() => { this.get('groupSvc').add(newGroup).then(() => {
this.load(); this.loadGroups();
}); });
this.modalClose("#add-group-modal"); this.modalClose("#add-group-modal");
@ -105,7 +105,7 @@ export default Component.extend(AuthProvider, ModalMixin, {
} }
this.get('groupSvc').delete(deleteGroup.id).then(() => { this.get('groupSvc').delete(deleteGroup.id).then(() => {
this.load(); this.loadGroups();
}); });
this.modalClose("#delete-group-modal"); this.modalClose("#delete-group-modal");