Add / edit Users

This commit is contained in:
Jamie Curnow
2018-06-20 16:57:34 +10:00
parent bfc319cff9
commit 446921111e
2 changed files with 10 additions and 15 deletions

View File

@ -39,6 +39,8 @@ const internalUser = {
.insertAndFetch(data);
})
.then(user => {
return internalUser.get(access, {id: user.id});
/*
return authModel
.query()
.insert({
@ -48,8 +50,9 @@ const internalUser = {
meta: {}
})
.then(() => {
return internalUser.get(access, {id: user.id, expand: ['services']});
return internalUser.get(access, {id: user.id});
});
*/
});
},
@ -110,7 +113,7 @@ const internalUser = {
});
})
.then(() => {
return internalUser.get(access, {id: data.id, expand: ['services']});
return internalUser.get(access, {id: data.id});
});
},