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

Add upstream OAuth 2.0 providers name and branding

This commit is contained in:
Quentin Gliech
2023-11-20 14:49:57 +01:00
parent a5428f10c5
commit 5126d36b2e
21 changed files with 295 additions and 107 deletions

View File

@ -128,6 +128,8 @@ impl std::fmt::Display for PkceMode {
pub struct UpstreamOAuthProvider {
pub id: Ulid,
pub issuer: String,
pub human_name: Option<String>,
pub brand_name: Option<String>,
pub discovery_mode: DiscoveryMode,
pub pkce_mode: PkceMode,
pub jwks_uri_override: Option<Url>,