1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-04 13:59:17 +00:00

NORY-46: add 'OpenID Connect logout' section

This commit is contained in:
Markus Thielker 2025-02-25 17:23:14 +01:00
parent 8c1e38efda
commit 2bdf7c5c4e
2 changed files with 197 additions and 1 deletions

View file

@ -13,5 +13,10 @@ export const clientFormSchema = z.object({
grant_types: z.array(z.string()),
response_types: z.array(z.string()),
token_endpoint_auth_method: z.string(),
backchannel_logout_session_required: z.boolean().default(false),
backchannel_logout_uri: z.string().url(),
frontchannel_logout_session_required: z.boolean().default(false),
frontchannel_logout_uri: z.string().url(),
skip_logout_consent: z.boolean().default(false),
post_logout_redirect_uris: z.array(z.string().url({ message: 'Invalid URL' })).min(1, { message: 'At least one redirect URI is required' }),
});