refactor: removed typo forward slash from API paths
This commit is contained in:
@@ -68,7 +68,7 @@ export class ProjectController {
|
|||||||
return this.projectService.remove(id);
|
return this.projectService.remove(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get("/user/workspace/:id")
|
@Get("user/workspace/:id")
|
||||||
@ApiOperation({ summary: "Get user projects!" })
|
@ApiOperation({ summary: "Get user projects!" })
|
||||||
@ApiResponse({ status: 200, description: "Got user projects successfully!" })
|
@ApiResponse({ status: 200, description: "Got user projects successfully!" })
|
||||||
@ApiResponse({status: 400, description: "Bad Request!"})
|
@ApiResponse({status: 400, description: "Bad Request!"})
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ export class WorkspaceController {
|
|||||||
return this.workspaceService.remove(id);
|
return this.workspaceService.remove(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('/byuser')
|
@Get('byuser')
|
||||||
@ApiOperation({summary: 'Get User WorkSpaces'})
|
@ApiOperation({summary: 'Get User WorkSpaces'})
|
||||||
@ApiResponse({ status: 200, description: 'Got Workspaces successfully!' })
|
@ApiResponse({ status: 200, description: 'Got Workspaces successfully!' })
|
||||||
@ApiResponse({ status: 404, description: 'Bad Request!' })
|
@ApiResponse({ status: 404, description: 'Bad Request!' })
|
||||||
|
|||||||
Reference in New Issue
Block a user