1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 11:01:52 +00:00

added oidc conf to schema

This commit is contained in:
mstrhakr 2022-04-06 12:38:40 -04:00
parent 1d374a5f90
commit 08ea9a5c81

View file

@ -1069,6 +1069,21 @@
"logouturl": {"type": "string", "format": "uri", "description": "Then set, the user will be redirected to this URL when hitting the logout link."}
},
"required": [ "entityid", "idpurl", "cert" ]
},
"oidc": {
"type": "object",
"properties": {
"url": { "type": "string", "format": "uri" },
"authorizationURL": { "type": "string", "format": "uri" },
"tokenURL": { "type": "string", "format": "uri" },
"userInfoURL": { "type": "string", "format": "uri" },
"logouturl": { "type": "string", "format": "uri", "description": "Then set, the user will be redirected to this URL when hitting the logout link."},
"newAccounts": { "type": "boolean", "default": true },
"clientid": { "type": "string" },
"clientsecret": { "type": "string" },
"callbackURL": { "type": "string", "format": "uri" }
},
"required": [ "url", "authorizationURL", "tokenURL", "userInfoURL", "logouturl", "clientid", "clientsecret", "callbackURL" ]
}
}
}