fixed sending int

This commit is contained in:
leca 2024-10-31 12:37:17 +03:00
parent f6e25d606a
commit afa1edeb8d
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class GroupController {
let group = await GroupService.getByName(groupName);
return res.status(200).send(group.id);
return res.status(200).send(group.id.toString());
}
}