15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
|
export default {
|
||
|
routes: [
|
||
|
{
|
||
|
method: "GET",
|
||
|
path: "/custom/vehicle/distinct-years",
|
||
|
handler: "api::vehicle.vehicle.distinctYears",
|
||
|
},
|
||
|
{
|
||
|
method: "GET",
|
||
|
path: "/custom/vehicle/year/:year",
|
||
|
handler: "api::vehicle.vehicle.findByYear",
|
||
|
},
|
||
|
],
|
||
|
};
|