We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a89d420 commit dc3d24bCopy full SHA for dc3d24b
src/ParseUser.js
@@ -623,7 +623,7 @@ class ParseUser extends ParseObject {
623
return user.signUp({}, options);
624
}
625
626
- /**
+ /**
627
* Logs in a user with a username (or email) and password. On success, this
628
* saves the session to disk, so you can retrieve the currently logged in
629
* user using <code>current</code>.
@@ -692,9 +692,9 @@ class ParseUser extends ParseObject {
692
usernameIsObject
693
? usernameOrObject
694
: {
695
- username: usernameOrObject,
696
- password: passwordOrOptions,
697
- }
+ username: usernameOrObject,
+ password: passwordOrOptions,
+ }
698
);
699
return user.logIn(options);
700
0 commit comments