diff --git a/src/controllers/SalaryEmployeeController.ts b/src/controllers/SalaryEmployeeController.ts index 2d722e0..5a72c72 100644 --- a/src/controllers/SalaryEmployeeController.ts +++ b/src/controllers/SalaryEmployeeController.ts @@ -26,7 +26,7 @@ import HttpStatusCode from "../interfaces/http-status"; import { SalaryRankEmployees } from "../entities/SalaryRankEmployees"; import { randomUUID } from "crypto"; -@Route("api/v1/salary") +@Route("api/v1/salary/employee") @Tags("Salary") @Security("bearerAuth") export class Salary extends Controller { diff --git a/src/controllers/SalaryRankEmployeeController.ts b/src/controllers/SalaryRankEmployeeController.ts index 8579ad0..6cfa146 100644 --- a/src/controllers/SalaryRankEmployeeController.ts +++ b/src/controllers/SalaryRankEmployeeController.ts @@ -24,7 +24,7 @@ import { UpdateSalaryRankEmployee, } from "../entities/SalaryRankEmployees"; import { Salarys } from "../entities/Salarys"; -@Route("api/v1/salary/rate") +@Route("api/v1/salary/rate/employee") @Tags("SalaryRankEmployee") @Security("bearerAuth") @Response(