feat: optional payment for server (#5055)

This commit is contained in:
DarkSky
2023-11-25 22:59:47 +08:00
committed by GitHub
parent 9dc2d55a5a
commit 13e712158c
6 changed files with 92 additions and 5 deletions

View File

@@ -2,6 +2,14 @@
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type ServerConfigType {
"""server version"""
version: String!
"""server flavor"""
flavor: String!
}
type UserType {
id: ID!
@@ -240,6 +248,9 @@ type DocHistoryType {
}
type Query {
"""server config"""
serverConfig: ServerConfigType!
"""Get is owner of workspace"""
isOwner(workspaceId: String!): Boolean!