2026-06-11 19:07:18 +04:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
routes: [
|
|
|
|
|
{
|
|
|
|
|
method: 'GET',
|
|
|
|
|
path: '/paroles/export',
|
|
|
|
|
handler: 'parole.export',
|
2026-06-15 20:19:53 +04:00
|
|
|
config: { policies: [], middlewares: [] },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
method: 'POST',
|
|
|
|
|
path: '/paroles/bulk-translate',
|
|
|
|
|
handler: 'parole.bulkTranslate',
|
|
|
|
|
config: { policies: [], middlewares: [] },
|
2026-06-11 19:07:18 +04:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|