* Work on Renegade style pipe codes

* Change age -> birthday
* Minor tweaks and tests
This commit is contained in:
Bryan Ashby 2015-07-20 22:56:48 -06:00
parent 31ff67f32b
commit 81e684cdcc
11 changed files with 58 additions and 28 deletions

View file

@ -74,14 +74,14 @@ function submitApplication(callingMenu, formData, extraArgs) {
menuViewController.switchFocus(viewIds[0]);
} else {
// Seems legit!
// :TODO: All of this should be a system API, not a mod
// :TODO: All of this should be a system API, not a mod, e.g. createNewUser(...)
var newUser = new user.User();
newUser.username = formData.value.username;
newUser.properties = {
real_name : formData.value.realName,
age : formData.value.age,
birthday : formData.value.birthday,
sex : formData.value.sex,
location : formData.value.location,
affiliation : formData.value.affils,