added data table, formatter
revert context on __root beforeLoad refactor project structure refactor role badge dynamic nav menu
This commit is contained in:
9
src/service/audit.schema.ts
Normal file
9
src/service/audit.schema.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import z from 'zod';
|
||||
|
||||
export const auditListSchema = z.object({
|
||||
page: z.coerce.number().min(1).default(1),
|
||||
limit: z.coerce.number().min(10).max(100).default(10),
|
||||
keyword: z.string().optional(),
|
||||
});
|
||||
|
||||
export const auditSchema = z.object({});
|
||||
Reference in New Issue
Block a user