From c221f827b410aed6114dbc2979e979d5a1267864 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Wed, 1 Aug 2018 15:52:56 -0600 Subject: [PATCH] fix: resolved schema error --- .../server/graph/tenant/schema/schema.graphql | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/core/server/graph/tenant/schema/schema.graphql b/src/core/server/graph/tenant/schema/schema.graphql index f53f642eb..d8f082ff7 100644 --- a/src/core/server/graph/tenant/schema/schema.graphql +++ b/src/core/server/graph/tenant/schema/schema.graphql @@ -76,6 +76,12 @@ type LocalAuthIntegration { type SSOAuthIntegrationConfig { key: String! + + """ + displayNameEnable when enabled, will allow Users to set and view their + displayName's. + """ + displayNameEnable: Boolean! } type SSOAuthIntegration { @@ -92,6 +98,12 @@ type OIDCAuthIntegrationConfig { clientSecret: String! authorizationURL: String! tokenURL: String! + + """ + displayNameEnable when enabled, will allow Users to set and view their + displayName's. + """ + displayNameEnable: Boolean! } type OIDCAuthIntegrationOptions { @@ -145,12 +157,6 @@ AuthSettings contains all the settings related to authentication and authorization. """ type AuthSettings { - """ - displayNameEnable when enabled, will allow Users to set and view their - displayName's. - """ - displayNameEnable: Boolean! - """ integrations are the set of configurations for the variations of authentication solutions.