1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00
This commit is contained in:
Hugh Nimmo-Smith
2023-10-05 16:39:15 +01:00
committed by Quentin Gliech
parent e6e98444f3
commit cfbda76c98

View File

@@ -24,7 +24,7 @@ export interface SynapseConfig {
host?: string; host?: string;
port?: number; port?: number;
}; };
} | any; } | {};
oidc_providers?: SynapseOIDCProvider[]; oidc_providers?: SynapseOIDCProvider[];
oidc_config?: SynapseOIDCProvider; oidc_config?: SynapseOIDCProvider;
@@ -52,5 +52,5 @@ export interface SynapseConfig {
enable_3pid_changes?: boolean; enable_3pid_changes?: boolean;
login_via_existing_session?: { login_via_existing_session?: {
enabled?: boolean; enabled?: boolean;
} };
} }