forked from cerc-io/snowballtools-base
Compare commits
1 Commits
main
...
05-22-Coll
Author | SHA1 | Date | |
---|---|---|---|
|
a1bb778699 |
@ -66,10 +66,10 @@ router.post('/validate', async (req, res) => {
|
||||
}
|
||||
const newUser = await service.createUser({
|
||||
ethAddress: data.address,
|
||||
email: '',
|
||||
name: '',
|
||||
subOrgId: '',
|
||||
turnkeyWalletId: '',
|
||||
email: data.address,
|
||||
name: data.address,
|
||||
subOrgId: data.address,
|
||||
turnkeyWalletId: data.address, // TODO: fix fields
|
||||
});
|
||||
req.session.userId = newUser.id;
|
||||
} else if (action === 'login') {
|
||||
|
@ -414,6 +414,9 @@ export class Service {
|
||||
if (!user) {
|
||||
user = await this.db.addUser({
|
||||
email: data.email,
|
||||
ethAddress: data.email,
|
||||
subOrgId: data.email,
|
||||
turnkeyWalletId: data.email,
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user