YARA-1110

This commit is contained in:
SepehrYahyaee
2026-07-13 11:53:47 +03:30
parent 72dec7a917
commit 5595083e86
21 changed files with 413 additions and 653 deletions

View File

@@ -19,7 +19,6 @@ import {
CreateSuperAdminDto,
CreateFieldExpertAdminDto,
CreateRegistrarAdminDto,
CreateFinancialExpertAdminDto,
} from "./dto/super-admin.dto";
import { ClientDto } from "src/client/dto/create-client.dto";
import {
@@ -130,18 +129,6 @@ export class SuperAdminController {
return this.superAdminService.createRegistrar(body);
}
@Post("create-financial-expert")
@ApiOperation({
summary: "Create a financial expert (V5 flow)",
description:
"FinancialExperts are the final approvers in the V5 blame flow before fanavaran submission. " +
"Scoped to the specified insurer client via clientId.",
})
@ApiBody({ type: CreateFinancialExpertAdminDto })
createFinancialExpert(@Body() body: CreateFinancialExpertAdminDto) {
return this.superAdminService.createFinancialExpert(body);
}
// ── System settings ──────────────────────────────────────────────────────
@Get("system-settings")