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:
parent
1d374a5f90
commit
08ea9a5c81
1 changed files with 15 additions and 0 deletions
|
@ -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" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue