From be68ecc25d31cb8325c1c1ca4fd79c0e0fa9bc20 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Tue, 28 May 2024 17:31:09 -0400 Subject: [PATCH] update api fields --- backend/src/lib/api-docs/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/lib/api-docs/constants.ts b/backend/src/lib/api-docs/constants.ts index 92b3b9e01..aa193c4f2 100644 --- a/backend/src/lib/api-docs/constants.ts +++ b/backend/src/lib/api-docs/constants.ts @@ -737,7 +737,7 @@ export const PROJECT_ROLE = { permissions: "The permissions assigned to the role." }, DELETE: { - projectSlug: "Slug of the project to delete the role for.", + projectSlug: "Slug of the project to delete this role for.", roleId: "The ID of the role to update" }, GET_ROLE_BY_SLUG: { @@ -745,6 +745,6 @@ export const PROJECT_ROLE = { roleSlug: "The slug of the role to get details" }, LIST: { - projectSlug: "The slug of the project to list the roles for." + projectSlug: "The slug of the project to list the roles of." } };