diff options
Diffstat (limited to 'packages/trpc/routers/admin.ts')
| -rw-r--r-- | packages/trpc/routers/admin.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/trpc/routers/admin.ts b/packages/trpc/routers/admin.ts index f46e17f2..5e169857 100644 --- a/packages/trpc/routers/admin.ts +++ b/packages/trpc/routers/admin.ts @@ -351,6 +351,10 @@ export const adminAppRouter = router({ updateData.bookmarkQuota = input.bookmarkQuota; } + if (input.storageQuota !== undefined) { + updateData.storageQuota = input.storageQuota; + } + if (Object.keys(updateData).length === 0) { throw new TRPCError({ code: "BAD_REQUEST", |
