fix bugs preventing client rules from being updated

This commit is contained in:
Kyle Klaus 2020-04-10 17:42:44 -07:00
parent 46a9f5cb96
commit fd932c7678

View File

@ -168,14 +168,15 @@ const internalAccessList = {
} }
}); });
} }
})
.then(() => {
// Check for clients and add/update/remove them // Check for clients and add/update/remove them
if (typeof data.clients !== 'undefined' && data.clients) { if (typeof data.clients !== 'undefined' && data.clients) {
let promises = []; let promises = [];
data.clients.map(function (client) { data.clients.map(function (client) {
if (client.address) { if (client.address) {
promises.push(accessListAuthModel promises.push(accessListClientModel
.query() .query()
.insert({ .insert({
access_list_id: data.id, access_list_id: data.id,