mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 18:07:31 +00:00
fix: add missing SAML type for GetActiveIdentityProviders (#8186)
# Which Problems Are Solved - When the endpoint http://{CUSTOM-DOMAIN}/v2beta/settings/login/idps is called the type for an activated SAML provider is not sent. - The IDENTITY_PROVIDER_TYPE_SAML is missing # How the Problems Are Solved - Adds the missing IDENTITY_PROVIDER_TYPE_SAML to the IdentityProviderType proto definition - Adds the missing case for idpTypeToPb - Adds the missing test case for idpTypeToPb Here's a screenshot showing the endpoint response:  # Additional Context - Closes #7885 Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
This commit is contained in:
@@ -148,4 +148,5 @@ enum IdentityProviderType {
|
||||
IDENTITY_PROVIDER_TYPE_GITLAB = 8;
|
||||
IDENTITY_PROVIDER_TYPE_GITLAB_SELF_HOSTED = 9;
|
||||
IDENTITY_PROVIDER_TYPE_GOOGLE = 10;
|
||||
IDENTITY_PROVIDER_TYPE_SAML=11;
|
||||
}
|
||||
|
Reference in New Issue
Block a user