api route resolved

This commit is contained in:
Kallesh B S 2025-04-07 09:56:36 +05:30
parent 1b7d5b8554
commit 4efa9794b0
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ import {
UpdateFeeCommBodyDTO,
} from './manage-fee.dto';
@Controller('manage-fee')
@Controller('oracle')
export class ManageFeeController {
constructor(private readonly manageFeeService: ManageFeeService) {}

View File

@ -9,7 +9,7 @@ import {
UpdateParamRecordDTO,
} from './param-table.dto';
@Controller('param-table')
@Controller('oracle')
export class ParamTableController {
constructor(private readonly paramTableService: ParamTableService) {}

View File

@ -6,7 +6,7 @@ import {
import { ApiTags } from '@nestjs/swagger';
import { CarnetSequenceService } from './carnet-sequence.service';
@Controller('carnet-sequence')
@Controller('oracle')
export class CarnetSequenceController {
constructor(private readonly carnetSequenceService: CarnetSequenceService) {}