
* feat: introduce authentication page * feat: update page width * fix(saml): cover non-existing role mapping on onboarding --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
20 lines
373 B
TypeScript
20 lines
373 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_SAML_AUTH_PROVIDER = gql`
|
|
query GetSamlAuthProvider {
|
|
getSamlAuthProvider {
|
|
name
|
|
certificate
|
|
signatureAlgorithm
|
|
issuer
|
|
entryPoint
|
|
firstnameAttributeName
|
|
surnameAttributeName
|
|
emailAttributeName
|
|
roleAttributeName
|
|
active
|
|
defaultRoleId
|
|
}
|
|
}
|
|
`;
|