Tidied up the packages and unused modules

This commit is contained in:
SepehrYahyaee
2026-05-25 14:59:37 +03:30
parent 680f3c1798
commit 48cc4d8a8d
13 changed files with 409 additions and 8398 deletions

View File

@@ -113,33 +113,33 @@ export class ExpertInitiatedController {
);
}
@ApiOperation({ deprecated: true })
@Post("create")
@ApiOperation({
summary: "Create expert-initiated blame file",
description:
"Expert creates an initial incomplete blame file. Can be IN_PERSON (expert fills all info) or LINK (expert sends link to users).",
})
@ApiBody({ type: CreateExpertInitiatedFileDto })
@ApiResponse({
status: 201,
description: "File created successfully",
schema: {
type: "object",
properties: {
requestId: { type: "string" },
},
},
})
async createExpertInitiatedFile(
@CurrentUser() expert: any,
@Body() dto: CreateExpertInitiatedFileDto,
) {
return await this.requestManagementService.createExpertInitiatedFile(
expert,
dto,
);
}
// @ApiOperation({ deprecated: true })
// @Post("create")
// @ApiOperation({
// summary: "Create expert-initiated blame file",
// description:
// "Expert creates an initial incomplete blame file. Can be IN_PERSON (expert fills all info) or LINK (expert sends link to users).",
// })
// @ApiBody({ type: CreateExpertInitiatedFileDto })
// @ApiResponse({
// status: 201,
// description: "File created successfully",
// schema: {
// type: "object",
// properties: {
// requestId: { type: "string" },
// },
// },
// })
// async createExpertInitiatedFile(
// @CurrentUser() expert: any,
// @Body() dto: CreateExpertInitiatedFileDto,
// ) {
// return await this.requestManagementService.createExpertInitiatedFile(
// expert,
// dto,
// );
// }
@ApiOperation({ deprecated: true })
@Post("complete-form-third-party/:requestId")