From b9ae2409147fe305b37757c4fef27bfa03f3d36d Mon Sep 17 00:00:00 2001 From: Julian Krauser Date: Fri, 14 Feb 2025 15:36:06 +0100 Subject: [PATCH] fix: spelling of vehicle route --- src/api/vehicle/routes/extend-vehicle.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/vehicle/routes/extend-vehicle.ts b/src/api/vehicle/routes/extend-vehicle.ts index bb0b05d..1d747b6 100644 --- a/src/api/vehicle/routes/extend-vehicle.ts +++ b/src/api/vehicle/routes/extend-vehicle.ts @@ -2,12 +2,12 @@ export default { routes: [ { method: "GET", - path: "/custom/vehicle/distinct-years", + path: "/custom/vehicles/distinct-years", handler: "api::vehicle.vehicle.distinctYears", }, { method: "GET", - path: "/custom/vehicle/year/:year", + path: "/custom/vehicles/year/:year", handler: "api::vehicle.vehicle.findByYear", }, ],