Ejemplo n.º 1
0
exports.getGroup = function (cb, groupId) {
    var jsonQuery = QueryJsonFactory.getUdmQuery(collection);
    jsonQuery.criteria = {
        id: groupId
    };
    RESTClient.getJSON(undefined, jsonQuery, cb);
};
Ejemplo n.º 2
0
exports.getGroupsForUser = function (cb, userId) {
    var jsonQuery = QueryJsonFactory.getUdmQuery(collection);
    jsonQuery.criteria = {
        ParentUserId: userId
    };
    RESTClient.getJSON(undefined, jsonQuery, cb);
};