fix(web): OAuth quota size (#18526)

fix(server): oauth quota size
This commit is contained in:
Daimolean
2025-06-13 22:57:29 +08:00
committed by GitHub
parent e2dfbd66c3
commit 004c2f2496
12 changed files with 24 additions and 16 deletions

View File

@@ -14344,8 +14344,10 @@
"type": "string"
},
"defaultStorageQuota": {
"format": "int64",
"minimum": 0,
"type": "number"
"nullable": true,
"type": "integer"
},
"enabled": {
"type": "boolean"

View File

@@ -1392,7 +1392,7 @@ export type SystemConfigOAuthDto = {
buttonText: string;
clientId: string;
clientSecret: string;
defaultStorageQuota: number;
defaultStorageQuota: number | null;
enabled: boolean;
issuerUrl: string;
mobileOverrideEnabled: boolean;