refactor: removed typo forward slash from API paths

This commit is contained in:
2026-07-06 14:30:41 +03:30
parent d9283e3a90
commit 263ede68b2
2 changed files with 2 additions and 2 deletions
@@ -68,7 +68,7 @@ export class ProjectController {
return this.projectService.remove(id);
}
@Get("/user/workspace/:id")
@Get("user/workspace/:id")
@ApiOperation({ summary: "Get user projects!" })
@ApiResponse({ status: 200, description: "Got user projects successfully!" })
@ApiResponse({status: 400, description: "Bad Request!"})
@@ -64,7 +64,7 @@ export class WorkspaceController {
return this.workspaceService.remove(id);
}
@Get('/byuser')
@Get('byuser')
@ApiOperation({summary: 'Get User WorkSpaces'})
@ApiResponse({ status: 200, description: 'Got Workspaces successfully!' })
@ApiResponse({ status: 404, description: 'Bad Request!' })