WIP
This commit is contained in:
parent
2d62aaac5d
commit
5c567eb5dc
|
@ -603,7 +603,7 @@ class LoginCall {
|
||||||
'Content-Type': 'application/x-www-form-urlencoded',
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
'email': email,
|
'email': email.toLowerCase(),
|
||||||
'password': password,
|
'password': password,
|
||||||
'uuid': devUUID,
|
'uuid': devUUID,
|
||||||
'token': token,
|
'token': token,
|
||||||
|
@ -642,7 +642,7 @@ class RegisterCall {
|
||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
'name': name,
|
'name': name,
|
||||||
'email': email,
|
'email': email.toLowerCase(),
|
||||||
'password': password,
|
'password': password,
|
||||||
'token': token,
|
'token': token,
|
||||||
'uuid': uuid,
|
'uuid': uuid,
|
||||||
|
|
Loading…
Reference in New Issue