2018-12-24 01:03:10 -05:00
|
|
|
# ===============================================
|
|
|
|
# SITE
|
|
|
|
# ===============================================
|
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
site: SiteQuery
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Mutation {
|
|
|
|
site: SiteMutation
|
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# QUERIES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type SiteQuery {
|
|
|
|
config: SiteConfig @auth(requires: ["manage:system"])
|
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# MUTATIONS
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type SiteMutation {
|
|
|
|
updateConfig(
|
2020-05-10 15:55:28 -04:00
|
|
|
host: String
|
|
|
|
title: String
|
|
|
|
description: String
|
|
|
|
robots: [String]
|
|
|
|
analyticsService: String
|
|
|
|
analyticsId: String
|
|
|
|
company: String
|
|
|
|
contentLicense: String
|
|
|
|
logoUrl: String
|
2020-07-03 19:36:33 -04:00
|
|
|
authAutoLogin: Boolean
|
2020-07-05 23:55:11 -04:00
|
|
|
authEnforce2FA: Boolean
|
2020-07-05 01:36:02 -04:00
|
|
|
authHideLocal: Boolean
|
2020-07-03 19:36:33 -04:00
|
|
|
authLoginBgUrl: String
|
|
|
|
authJwtAudience: String
|
|
|
|
authJwtExpiration: String
|
|
|
|
authJwtRenewablePeriod: String
|
2020-05-10 15:55:28 -04:00
|
|
|
featurePageRatings: Boolean
|
|
|
|
featurePageComments: Boolean
|
|
|
|
featurePersonalWikis: Boolean
|
2020-05-29 18:24:20 -04:00
|
|
|
securityOpenRedirect: Boolean
|
2020-05-10 15:55:28 -04:00
|
|
|
securityIframe: Boolean
|
|
|
|
securityReferrerPolicy: Boolean
|
|
|
|
securityTrustProxy: Boolean
|
|
|
|
securitySRI: Boolean
|
|
|
|
securityHSTS: Boolean
|
|
|
|
securityHSTSDuration: Int
|
|
|
|
securityCSP: Boolean
|
|
|
|
securityCSPDirectives: String
|
|
|
|
uploadMaxFileSize: Int
|
|
|
|
uploadMaxFiles: Int
|
|
|
|
|
2018-12-24 01:03:10 -05:00
|
|
|
): DefaultResponse @auth(requires: ["manage:system"])
|
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# TYPES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type SiteConfig {
|
|
|
|
host: String!
|
|
|
|
title: String!
|
|
|
|
description: String!
|
|
|
|
robots: [String]!
|
2019-01-01 17:03:30 -05:00
|
|
|
analyticsService: String!
|
2019-01-12 18:33:30 -05:00
|
|
|
analyticsId: String!
|
2018-12-24 01:03:10 -05:00
|
|
|
company: String!
|
2020-02-23 15:20:55 -05:00
|
|
|
contentLicense: String!
|
2019-12-18 23:45:19 -05:00
|
|
|
logoUrl: String!
|
2020-07-03 19:36:33 -04:00
|
|
|
authAutoLogin: Boolean
|
2020-07-05 23:55:11 -04:00
|
|
|
authEnforce2FA: Boolean
|
2020-07-05 01:36:02 -04:00
|
|
|
authHideLocal: Boolean
|
2020-07-03 19:36:33 -04:00
|
|
|
authLoginBgUrl: String
|
|
|
|
authJwtAudience: String
|
|
|
|
authJwtExpiration: String
|
|
|
|
authJwtRenewablePeriod: String
|
2018-12-24 01:03:10 -05:00
|
|
|
featurePageRatings: Boolean!
|
|
|
|
featurePageComments: Boolean!
|
|
|
|
featurePersonalWikis: Boolean!
|
2020-05-29 18:24:20 -04:00
|
|
|
securityOpenRedirect: Boolean!
|
2019-08-24 22:19:35 -04:00
|
|
|
securityIframe: Boolean!
|
|
|
|
securityReferrerPolicy: Boolean!
|
2019-10-05 16:58:34 -04:00
|
|
|
securityTrustProxy: Boolean!
|
2019-10-12 14:41:45 -04:00
|
|
|
securitySRI: Boolean!
|
2019-08-24 22:19:35 -04:00
|
|
|
securityHSTS: Boolean!
|
|
|
|
securityHSTSDuration: Int!
|
|
|
|
securityCSP: Boolean!
|
|
|
|
securityCSPDirectives: String!
|
2020-05-10 15:55:28 -04:00
|
|
|
uploadMaxFileSize: Int!
|
|
|
|
uploadMaxFiles: Int!
|
2018-12-24 01:03:10 -05:00
|
|
|
}
|