Add {location} format object

This commit is contained in:
Bryan Ashby 2015-12-21 18:21:43 -07:00
parent 19fc28fd8e
commit 66ec24b31a
1 changed files with 2 additions and 1 deletions

View File

@ -84,10 +84,11 @@ UserListModule.prototype.mciReady = function(mciData, cb) {
userId : ue.userId, userId : ue.userId,
userName : ue.userName, userName : ue.userName,
affils : ue.affiliation, affils : ue.affiliation,
location : ue.location,
// :TODO: the rest! // :TODO: the rest!
note : ue.note || '', note : ue.note || '',
lastLoginTs : moment(ue.last_login_timestamp).format(dateTimeFormat), lastLoginTs : moment(ue.last_login_timestamp).format(dateTimeFormat),
} };
} }
userListView.setItems(_.map(userList, function formatUserEntry(ue) { userListView.setItems(_.map(userList, function formatUserEntry(ue) {