Additional user parameters
Because of this post:
https://getsatisfaction.com/apperyio/...
I created a special service to return additional user data that I need (user Group, which is an additional string column in the _users collection)
My request includes the following code:
var UserID = localStorage.getItem('UserID');
var temp = {"_id": UserID};
return temp;
which works, because the app alerts the correct UserID (which stores the users _id locally)
and the response is mapped thus:
Unfortunately the Group variable returns null. I executed the service in several places, and created a custom JS call to check it.