We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a9f5c commit fd932c7Copy full SHA for fd932c7
backend/internal/access-list.js
@@ -168,14 +168,15 @@ const internalAccessList = {
168
}
169
});
170
171
-
+ })
172
+ .then(() => {
173
// Check for clients and add/update/remove them
174
if (typeof data.clients !== 'undefined' && data.clients) {
175
let promises = [];
176
177
data.clients.map(function (client) {
178
if (client.address) {
- promises.push(accessListAuthModel
179
+ promises.push(accessListClientModel
180
.query()
181
.insert({
182
access_list_id: data.id,
0 commit comments