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
+12 -3
View File
@@ -905,10 +905,19 @@ export const workspaceQuotaQuery = {
query workspaceQuota($id: String!) {
workspace(id: $id) {
quota {
humanReadableName
storageQuota
usedSize
name
blobLimit
storageQuota
historyPeriod
memberLimit
humanReadable {
name
blobLimit
storageQuota
historyPeriod
memberLimit
}
usedSize
}
}
}`,
@@ -1,10 +1,19 @@
query workspaceQuota($id: String!) {
workspace(id: $id) {
quota {
humanReadableName
storageQuota
usedSize
name
blobLimit
storageQuota
historyPeriod
memberLimit
humanReadable {
name
blobLimit
storageQuota
historyPeriod
memberLimit
}
usedSize
}
}
}