1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Improve docs for the prompt_values_supported field

This commit is contained in:
Kévin Commaille
2022-08-12 10:32:32 +02:00
committed by Quentin Gliech
parent 5c8b442747
commit 78f41c7d86

View File

@ -344,6 +344,11 @@ pub struct ProviderMetadata {
pub require_pushed_authorization_requests: Option<bool>,
/// Array containing the list of prompt values that this OP supports.
///
/// This field can be used to detect if the OP supports the [prompt
/// `create`] value.
///
/// [prompt `create`]: https://openid.net/specs/openid-connect-prompt-create-1_0.html
pub prompt_values_supported: Option<Vec<Prompt>>,
}