feat: reptile review feedback

This commit is contained in:
=
2025-08-13 02:34:03 +05:30
parent 97b2c534a7
commit 3cec1b4021
2 changed files with 7 additions and 1 deletions

View File

@@ -285,6 +285,12 @@ export const registerProjectRouter = async (server: FastifyZodProvider) => {
schema: {
hide: false,
tags: [ApiDocsTags.Projects],
description: "Get project details by slug",
security: [
{
bearerAuth: []
}
],
params: z.object({
slug: slugSchema({ max: 36 }).describe("The slug of the project to get.")
}),

View File

@@ -1,4 +1,4 @@
---
title: "Get Project Details By Slug"
title: "Get Project By Slug"
openapi: "GET /api/v2/workspace/{slug}"
---