From e01127c0ad2c2825b85f13e72ed357d4f632bcda Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 14 Jan 2026 10:23:07 +0800 Subject: [PATCH] feat(openiddict): add pushed_authorization(PAR) endpoints --- .../openiddict/src/components/applications/ApplicationModal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue b/apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue index a49a9fe8b..57cea20b8 100644 --- a/apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue +++ b/apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue @@ -125,6 +125,7 @@ const endpoints = reactive([ { label: 'device', value: 'device' }, { label: 'revocation', value: 'revocation' }, { label: 'introspection', value: 'introspection' }, + { label: 'pushed_authorization', value: 'pushed_authorization' }, ]); const getGrantTypes = computed(() => { const types = openIdConfiguration.value?.grant_types_supported ?? [];