feat: introduce admin app configs page (#1335)

This commit is contained in:
kattoczko
2023-10-24 11:19:37 +01:00
committed by GitHub
parent 0a36101da1
commit 8c859f9408
9 changed files with 318 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import { gql } from '@apollo/client';
export const CREATE_APP_CONFIG = gql`
mutation CreateAppConfig($input: CreateAppConfigInput) {
createAppConfig(input: $input) {
id
key
allowCustomConnection
shared
disabled
}
}
`;

View File

@@ -0,0 +1,13 @@
import { gql } from '@apollo/client';
export const UPDATE_APP_CONFIG = gql`
mutation UpdateAppConfig($input: UpdateAppConfigInput) {
updateAppConfig(input: $input) {
id
key
allowCustomConnection
shared
disabled
}
}
`;