feat(server): runtime service config (#7644)

This commit is contained in:
liuyi
2024-07-30 14:58:24 +08:00
committed by GitHub
parent 67248316bd
commit fcf0ecbaa2
8 changed files with 136 additions and 10 deletions

View File

@@ -541,6 +541,7 @@ type Query {
"""get all server runtime configurable settings"""
serverRuntimeConfig: [ServerRuntimeConfigType!]!
serverServiceConfigs: [ServerServiceConfig!]!
"""Get user by email"""
user(email: String!): UserOrLimitedUser
@@ -663,6 +664,11 @@ type ServerRuntimeConfigType {
value: JSON!
}
type ServerServiceConfig {
config: JSONObject!
name: String!
}
type SubscriptionAlreadyExistsDataType {
plan: String!
}