mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-09 20:47:26 +02:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { z } from "zod";
|
|
|
|
export const instanceSettingsSchema = z.object({
|
|
disableUserRegistration: z.boolean(),
|
|
});
|
|
|
|
export type InstanceSettings = z.infer<typeof instanceSettingsSchema>;
|