Add experimental oidc dashboard view
This commit is contained in:
@@ -43,7 +43,7 @@ async function clientsAdd(id, secret, loginRedirectUri, logoutRedirectUri) {
|
||||
assert.strictEqual(typeof loginRedirectUri, 'string');
|
||||
assert.strictEqual(typeof logoutRedirectUri, 'string');
|
||||
|
||||
const query = 'INSERT INTO oidcClients (id, secret, loginRedirectUri, logoutRedirectUri) VALUES (?, ?, ?)';
|
||||
const query = 'INSERT INTO oidcClients (id, secret, loginRedirectUri, logoutRedirectUri) VALUES (?, ?, ?, ?)';
|
||||
const args = [ id, secret, loginRedirectUri, logoutRedirectUri ];
|
||||
|
||||
const [error] = await safe(database.query(query, args));
|
||||
|
||||
Reference in New Issue
Block a user