diff --git a/front/src/modules/auth/services/index.ts b/front/src/modules/auth/services/index.ts index ea465c2a3..18c6c2f7d 100644 --- a/front/src/modules/auth/services/index.ts +++ b/front/src/modules/auth/services/index.ts @@ -1 +1,2 @@ -export * from './index'; +export * from './select'; +export * from './update'; diff --git a/front/src/modules/auth/services/select.ts b/front/src/modules/auth/services/select.ts new file mode 100644 index 000000000..2386bd448 --- /dev/null +++ b/front/src/modules/auth/services/select.ts @@ -0,0 +1,10 @@ +import { gql } from '@apollo/client'; + +export const GET_CLIENT_CONFIG = gql` + query GetClientConfig { + clientConfig { + display_google_login + prefill_login_with_seed + } + } +`;