Skip to content

allow signup without email #469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions packages/dart/lib/src/objects/parse_user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,20 @@ class ParseUser extends ParseObject implements ParseCloneable {
///
/// After creating a new user via [Parse.create] call this method to register
/// that user on Parse
Future<ParseResponse> signUp() async {
/// By setting [allowWithoutEmail] to `true`, you can sign up without setting an email
Future<ParseResponse> signUp({bool allowWithoutEmail = false}) async {
forgetLocalSession();

try {
if (emailAddress == null) {
return null;
if (!allowWithoutEmail) {
return null;
} else {
assert(() {
print('It is recommended to only allow user signUp with a ');
return true;
}());
}
}

final Map<String, dynamic> bodyData = _getObjectData();
Expand Down