set default hydra client scope with webhook

This commit is contained in:
Matthieu Lamalle 2023-03-27 14:02:29 +02:00
parent 9c7773a038
commit dda65fb7b4
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@
"redirect_uris": {{ item.redirect_uris | default([]) | to_json }},
"response_types": {{ item.response_types | default(["code"]) | to_json }},
"logo_uri": {{ item.logo_uri | default("") | to_json }},
"scope": {{ item.scope | default("openid profile email") | to_json }},
"scope": {{ item.scope | default("openid profile email webhook") | to_json }},
"token_endpoint_auth_method": {{ item.token_endpoint_auth_method | default("client_secret_post") | to_json }}
}