mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' into 'master'
Fix app installing issue in kiosk See merge request entgra/carbon-device-mgt!372
This commit is contained in:
commit
f603ed0f97
@ -119,7 +119,7 @@ public class SQLServerApplicationDAOImpl extends GenericApplicationDAOImpl {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (filter.getLimit() == -1) {
|
if (filter.getLimit() == -1) {
|
||||||
sql = sql.replace("OFFSET ? ROWS FETCH NEXT ? ROWS ONLY", "");
|
sql = sql.replace("ORDER BY ID OFFSET ? ROWS FETCH NEXT ? ROWS ONLY", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
String sortingOrder = "ASC";
|
String sortingOrder = "ASC";
|
||||||
|
|||||||
@ -51,6 +51,7 @@ public class MDMAndroidOperationUtil {
|
|||||||
EnterpriseApplication enterpriseApplication = new EnterpriseApplication();
|
EnterpriseApplication enterpriseApplication = new EnterpriseApplication();
|
||||||
enterpriseApplication.setType(application.getType().toString());
|
enterpriseApplication.setType(application.getType().toString());
|
||||||
enterpriseApplication.setUrl(application.getLocation());
|
enterpriseApplication.setUrl(application.getLocation());
|
||||||
|
enterpriseApplication.setAppIdentifier(application.getIdentifier());
|
||||||
operation.setPayLoad(enterpriseApplication.toJSON());
|
operation.setPayLoad(enterpriseApplication.toJSON());
|
||||||
break;
|
break;
|
||||||
case PUBLIC:
|
case PUBLIC:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user