We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e53b5a + 9c7424d commit b96d1ecCopy full SHA for b96d1ec
src/modules/workspace/controllers/collection.controller.ts
@@ -1622,15 +1622,17 @@ export class collectionController {
1622
const user = request?.user;
1623
const workspaceId = collectionDto?.workspaceId
1624
const collectionVariables = await this.collectionRequestService.generateVariables(
1625
- collectionId,
1626
- workspaceId,
1627
- user
1628
- );
+ collectionId,
+ workspaceId,
+ user,
+ );
1629
const responseData = new ApiResponseService(
1630
"Success",
1631
HttpStatusCode.OK,
1632
- collectionVariables);
1633
- };
+ collectionVariables,
1634
+ return res.status(responseData.httpStatusCode).send(responseData);
1635
+ }
1636
/**
1637
* Endpoint to update all the New generated Variables in requests.
1638
*
0 commit comments