last game date?

This commit is contained in:
iamBadgers
2024-06-09 20:33:31 -07:00
parent 1544117aae
commit 2db71661f0
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ export function addCharacterApis(app, jsonParser) {
app.get('/api/character/:characterId', async (req, res) => {
try {
const character = await Character.findOne({
attributes: ["id", "characterName", "playerName", "role", "creationDate", "status"],
where: { id: req.params['characterId'] }
})
if (character) {