From 5e37d9ce45c42e8a42008e50a0e6238553af9038 Mon Sep 17 00:00:00 2001 From: ixeldino Date: Tue, 19 Dec 2023 13:30:33 +0200 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B4=D0=B0=D0=B2=20=D0=BC=D0=B5?= =?UTF-8?q?=D1=82=D0=BE=D0=B4=20gender?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Додано виклик методу gender, який визначає стать та доповнює отриману в запиті структуру полем gender із визначеним значенням. --- server.mjs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/server.mjs b/server.mjs index 2bff99e..9dacd46 100644 --- a/server.mjs +++ b/server.mjs @@ -100,6 +100,23 @@ app.post('/vocative', async (req, res, next) => { } }); +/** + * Inflects detectGender . + */ +app.post('/gender', async (req, res, next) => { + try { + + const output = await shevchenko.detectGender(req.body); + //в отриманий запит дописую поле gender. Результат можна одразу відправляти для відмінювання. + var data = req.body; + data.gender = output; + res.status(200).send(data); + } catch (err) { + next(err); + } +}); + + /** * */