ff-webpage-cms/src/api/article/routes/extend-article.ts

14 lines
No EOL
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',
},
]
};