feat: add bulkTranslate to export
Déploiement API PROD / build (push) Successful in 2m9s
Déploiement API PROD / deploy (push) Successful in 51s

This commit is contained in:
2026-06-15 20:19:53 +04:00
parent 20e701b754
commit 95156de4ca
2 changed files with 49 additions and 4 deletions
+7 -4
View File
@@ -6,10 +6,13 @@ module.exports = {
method: 'GET',
path: '/paroles/export',
handler: 'parole.export',
config: {
policies: [],
middlewares: [],
},
config: { policies: [], middlewares: [] },
},
{
method: 'POST',
path: '/paroles/bulk-translate',
handler: 'parole.bulkTranslate',
config: { policies: [], middlewares: [] },
},
],
};