@joystick.js/node-canary 0.0.0-canary.76 → 0.0.0-canary.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.js +1 -0
- package/package.json +1 -1
package/dist/app/index.js
CHANGED
|
@@ -190,6 +190,7 @@ class App {
|
|
|
190
190
|
this.express.app.post("/api/_test/accounts/signup", async (req, res) => {
|
|
191
191
|
const existingUser = await runUserQuery("user", { emailAddress: req?.body?.emailAddress });
|
|
192
192
|
if (existingUser) {
|
|
193
|
+
console.log({ existingUser });
|
|
193
194
|
await runUserQuery("deleteUser", { userId: existingUser?._id || existingUser?.user_id });
|
|
194
195
|
}
|
|
195
196
|
await wait(0.5);
|