2025-01-14 09:12:11 +01:00
|
|
|
export default {
|
|
|
|
routes: [
|
|
|
|
{
|
|
|
|
method: "GET",
|
2025-02-14 15:36:06 +01:00
|
|
|
path: "/custom/vehicles/distinct-years",
|
2025-01-14 09:12:11 +01:00
|
|
|
handler: "api::vehicle.vehicle.distinctYears",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
method: "GET",
|
2025-02-14 15:36:06 +01:00
|
|
|
path: "/custom/vehicles/year/:year",
|
2025-01-14 09:12:11 +01:00
|
|
|
handler: "api::vehicle.vehicle.findByYear",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|