Skip to content
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

Clarify regstration queue message #655

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
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,11 @@ public ApiResponse<IApiAuthenticationResponse> Register(RequestContext context,
{
database.AddRegistrationToQueue(body.Username, body.EmailAddress, passwordBcrypt);
return new ApiAuthenticationError(
"Your account has been put into the registration queue, but it is not yet activated. " +
"To complete registration, patch your games to our servers and start playing within the next hour and your new account will be activated. " +
"You will be unable to sign in until you are patched and playing. For more instructions on patching, please visit https://docs.littlebigrefresh.com", true);
"Your account has been registered, but it is not yet activated. " +
"To complete registration, patch your games to our servers and access online features in-game within an hour of making your registration, and your new account will be activated. " +
"You may be unable to access online features until you beat the first chapter of the game's story mode, so please complete that if you haven't. " +
"If you are unable to activate your account within an hour, your registration is cancelled and you will have to register again. " +
"You will be unable to sign in on the website until your account is fully activated. For more instructions on patching, please visit https://docs.littlebigrefresh.com", true);
}

GameUser user = database.CreateUser(body.Username, body.EmailAddress, true);
Expand Down
Loading