feat(sso): introduce authentication with SAML

This commit is contained in:
Ali BARIN
2023-08-03 19:39:48 +02:00
parent 5176b8c322
commit a7104c41a2
28 changed files with 720 additions and 9 deletions
@@ -0,0 +1,11 @@
import { gql } from '@apollo/client';
export const GET_SAML_AUTH_PROVIDERS = gql`
query GetSamlAuthProviders {
getSamlAuthProviders {
id
name
issuer
}
}
`;