Update control panel layout + add new action bar (#1756)

This commit is contained in:
Luke Vella 2025-06-05 11:18:28 +01:00 committed by GitHub
parent 87b8c76492
commit 1146586e14
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 307 additions and 185 deletions

View file

@ -0,0 +1,7 @@
import { z } from "zod";
export const instanceSettingsSchema = z.object({
disableUserRegistration: z.boolean(),
});
export type InstanceSettings = z.infer<typeof instanceSettingsSchema>;