fix: update openapi meta

This commit is contained in:
Henry
2025-04-08 13:25:27 +01:00
parent fb8ba09a32
commit e4d3eb137e
3 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ export const boardRouter = createTRPCRouter({
summary: "Get board by slug",
description: "Retrieves a board by its slug",
tags: ["Boards"],
protect: true,
protect: false,
},
})
.input(

View File

@@ -7,7 +7,7 @@ import { createTRPCRouter, protectedProcedure } from "../trpc";
export const feedbackRouter = createTRPCRouter({
create: protectedProcedure
.meta({ enabled: false })
.meta({ enabled: false, openApi: false })
.input(
z.object({
feedback: z.string().min(1),

View File

@@ -75,7 +75,7 @@ export const workspaceRouter = createTRPCRouter({
path: "/workspaces/{workspaceSlug}",
description: "Retrieves a workspace by its slug",
tags: ["Workspaces"],
protect: true,
protect: false,
},
})
.input(