From edc1ea081f74802d9d1428ebe4145724b62ffb9d Mon Sep 17 00:00:00 2001 From: Andreas Date: Wed, 5 Oct 2022 13:59:01 +0200 Subject: [PATCH] fixed syntactical error --- api/src/controller/User.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/controller/User.hx b/api/src/controller/User.hx index 8afa047..d4d3392 100644 --- a/api/src/controller/User.hx +++ b/api/src/controller/User.hx @@ -34,7 +34,7 @@ class User{ db.MUser.select({name: MUser.name, email: MUser.email}).where(MUser.email == 'alice@example.com').first().next(function(row) { trace(row.name); // return "$row"; - }) + }); }); }); return "success";