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 temporary form items for OAuth2 flows

This commit is contained in:
Markus Thielker 2025-02-19 00:26:40 +01:00
parent ce28973dea
commit b5bd353f43
2 changed files with 39 additions and 2 deletions

View file

@ -10,4 +10,7 @@ export const clientFormSchema = z.object({
tos_uri: z.string().url(),
policy_uri: z.string().url(),
owner: z.string().min(1, 'Owner is required'),
grant_types: z.array(z.string()),
response_types: z.array(z.string()),
token_endpoint_auth_method: z.string(),
});