mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
commit
ee29c5e9a8
@ -51,7 +51,7 @@
|
|||||||
</context-param>
|
</context-param>
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>doAuthentication</param-name>
|
<param-name>doAuthentication</param-name>
|
||||||
<param-value>false</param-value>
|
<param-value>true</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
<!--context-param>
|
<!--context-param>
|
||||||
<param-name>managed-api-enabled</param-name>
|
<param-name>managed-api-enabled</param-name>
|
||||||
|
|||||||
@ -66,4 +66,17 @@ var groupModule = {};
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
groupModule.getGroupDevices = function (groupName, owner) {
|
||||||
|
endPoint = groupServiceEndpoint + "/owner/" + owner + "/name/" + groupName + "/devices";
|
||||||
|
return serviceInvokers.XMLHttp.get(
|
||||||
|
endPoint, function (responsePayload) {
|
||||||
|
return responsePayload;
|
||||||
|
},
|
||||||
|
function (responsePayload) {
|
||||||
|
log.error(responsePayload);
|
||||||
|
return responsePayload;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
}(groupModule));
|
}(groupModule));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user