feat: impl unlimited features (#5659)

This commit is contained in:
DarkSky
2024-01-26 08:28:53 +00:00
parent 04b9029d1b
commit 070d5ca471
13 changed files with 177 additions and 62 deletions

View File

@@ -24,6 +24,14 @@ enum FeatureType {
UnlimitedWorkspace
}
type HumanReadableQuotaType {
blobLimit: String!
historyPeriod: String!
memberLimit: String!
name: String!
storageQuota: String!
}
type InvitationType {
"""Invitee information"""
invitee: UserType!
@@ -191,7 +199,10 @@ type Query {
type QuotaQueryType {
blobLimit: SafeInt!
humanReadableName: String!
historyPeriod: Int!
humanReadable: HumanReadableQuotaType!
memberLimit: Int!
name: String!
storageQuota: SafeInt!
usedSize: SafeInt!
}