@joystick.js/node-canary 0.0.0-canary.81 → 0.0.0-canary.82
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 +2 -2
- package/package.json +1 -1
package/dist/app/index.js
CHANGED
|
@@ -207,7 +207,7 @@ class App {
|
|
|
207
207
|
});
|
|
208
208
|
res.status(200).send(JSON.stringify({
|
|
209
209
|
...signup?.user || {},
|
|
210
|
-
|
|
210
|
+
joystickLoginToken: signup?.token,
|
|
211
211
|
joystickLoginTokenExpiresAt: signup?.tokenExpiresAt
|
|
212
212
|
}));
|
|
213
213
|
});
|
|
@@ -220,7 +220,7 @@ class App {
|
|
|
220
220
|
});
|
|
221
221
|
res.status(200).send(JSON.stringify({
|
|
222
222
|
...login?.user || {},
|
|
223
|
-
|
|
223
|
+
joystickLoginToken: login?.token,
|
|
224
224
|
joystickLoginTokenExpiresAt: login?.tokenExpiresAt
|
|
225
225
|
}));
|
|
226
226
|
});
|