Fix satisy typo

This commit is contained in:
Jamie Curnow
2020-04-22 11:11:20 +10:00
parent a7cabdde3a
commit c0e9d1eb2f
7 changed files with 267 additions and 235 deletions

View File

@ -30,7 +30,7 @@ const internalAccessList = {
.omit(omissions())
.insertAndFetch({
name: data.name,
satify_any: data.satify_any,
satisfy_any: data.satisfy_any,
owner_user_id: access.token.getUserId(1)
});
})
@ -126,8 +126,8 @@ const internalAccessList = {
.query()
.where({id: data.id})
.patch({
name: data.name,
satify_any: data.satify_any,
name: data.name,
satisfy_any: data.satisfy_any,
});
}
})