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 c440e32 commit c750a29Copy full SHA for c750a29
library.js
@@ -45,6 +45,8 @@ OAuth.addAdminNavigation = (header) => {
45
46
OAuth.listStrategies = async (full) => {
47
const names = await db.getSortedSetMembers('oauth2-multiple:strategies');
48
+ names.sort();
49
+
50
const strategies = await db.getObjects(names.map(name => `oauth2-multiple:strategies:${name}`), full ? undefined : ['enabled']);
51
strategies.forEach((strategy, idx) => {
52
strategy.name = names[idx];
0 commit comments