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