openid: response types: remove support of implicit flow for the moment

This commit is contained in:
Philippe Loctaux 2023-03-16 22:29:32 +01:00
parent eb93cbd7ec
commit 64f3db3864

View file

@ -6,7 +6,7 @@ pub fn supported_response_types() -> Vec<ResponseTypes<CoreResponseType>> {
// Recommended: support the code flow.
ResponseTypes::new(vec![CoreResponseType::Code]),
// Optional: support the implicit flow.
ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here.
// ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here.
]
}