Merge pull request #1987 from akhilmhdh/feat/ui-permission-check-broken

New API endpoints for Tag update, get by id and get by slug
This commit is contained in:
Akhil Mohan
2024-06-17 19:13:45 +05:30
committed by GitHub
11 changed files with 228 additions and 10 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Get By ID"
openapi: "GET /api/v1/workspace/{projectId}/tags/{tagId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get By Slug"
openapi: "GET /api/v1/workspace/{projectId}/tags/slug/{tagSlug}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update"
openapi: "PATCH /api/v1/workspace/{projectId}/tags/{tagId}"
---