oidc: put clients into the db

This commit is contained in:
Johannes Zellner
2023-03-16 15:37:03 +01:00
parent da77b1ae5d
commit 4b7e4731a8
4 changed files with 130 additions and 46 deletions

View File

@@ -313,4 +313,8 @@ CREATE TABLE IF NOT EXISTS appLinks(
PRIMARY KEY(id));
CHARACTER SET utf8 COLLATE utf8_bin;
CREATE TABLE IF NOT EXISTS oidcClients(
id VARCHAR(128) NOT NULL UNIQUE,
secret VARCHAR(128) DEFAULT "",
redirectUri VARCHAR(256) DEFAULT "",
PRIMARY KEY(id));