From b07443cca9eb8cceabadf56f254c30e551650ec2 Mon Sep 17 00:00:00 2001 From: Michael Schramm Date: Tue, 9 Jun 2020 16:42:52 +0200 Subject: [PATCH] fix setting call --- graphql/query/settings.query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/query/settings.query.ts b/graphql/query/settings.query.ts index 3105205..68b0df6 100644 --- a/graphql/query/settings.query.ts +++ b/graphql/query/settings.query.ts @@ -8,7 +8,7 @@ export interface SettingsQueryData { export const SETTINGS_QUERY = gql` query { - disabledSignUp: getByKey(key: "SIGNUP_DISABLED") { + disabledSignUp: getSetting(key: "SIGNUP_DISABLED") { value: isTrue } }