Register

Register users to your application.

Make sure your application has been initialized before attempting to register.

App.Register("username", "Password123/", "token").then(registerResponse => {
	if(registerResponse.error == false){
		console.log(registerResponse.message);
	} else {
		console.log(registerResponse.message);
	}
})

Last updated