Skip to content

Commit

Permalink
wip: Populate plugin in Express Gateway should handle pagination #300
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 5, 2022
1 parent dc324e5 commit c296210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/express-gateway/plugins/populate.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = {
pluginContext.eventBus.on('admin-ready', async function ({ adminServer }) {
const oldScopes = await adminClient.scopes.list({});
await processScopes(oldScopes.scopes || [], consumers.scopes);
const oldUsers = await adminClient.users.list({});
const oldUsers = await adminClient.users.list({ all: true });
await processUsers(oldUsers.users || {}, consumers.users);
})
},
Expand Down

0 comments on commit c296210

Please sign in to comment.