mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-16 13:57:02 +08:00
feat: integrate new modules (#5087)
This commit is contained in:
@@ -10,6 +10,23 @@ type ServerConfigType {
|
||||
flavor: String!
|
||||
}
|
||||
|
||||
type UserQuotaHumanReadable {
|
||||
name: String!
|
||||
blobLimit: String!
|
||||
storageQuota: String!
|
||||
historyPeriod: String!
|
||||
memberLimit: String!
|
||||
}
|
||||
|
||||
type UserQuota {
|
||||
name: String!
|
||||
blobLimit: Float!
|
||||
storageQuota: Float!
|
||||
historyPeriod: Float!
|
||||
memberLimit: Int!
|
||||
humanReadable: UserQuotaHumanReadable!
|
||||
}
|
||||
|
||||
type UserType {
|
||||
id: ID!
|
||||
|
||||
@@ -31,6 +48,7 @@ type UserType {
|
||||
"""User password has been set"""
|
||||
hasPassword: Boolean
|
||||
token: TokenType!
|
||||
quota: UserQuota
|
||||
|
||||
"""Get user invoice count"""
|
||||
invoiceCount: Int!
|
||||
|
||||
Reference in New Issue
Block a user