feat(WEB-205, WEB-206): get breadcrumbs for my pages from contentstack
This commit is contained in:
10
server/routers/contentstack/breadcrumbs/input.ts
Normal file
10
server/routers/contentstack/breadcrumbs/input.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { z } from "zod";
|
||||
|
||||
import { Lang } from "@/constants/languages";
|
||||
|
||||
const langs = Object.keys(Lang) as [keyof typeof Lang]
|
||||
|
||||
export const getBreadcrumbsInput = z.object({
|
||||
href: z.string().min(1, { message: "href is required" }),
|
||||
locale: z.enum(langs),
|
||||
})
|
||||
Reference in New Issue
Block a user