mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
few changes after test
This commit is contained in:
parent
3740712d96
commit
5b5df161fc
@ -16,7 +16,7 @@
|
||||
<username>wso2carbon</username>
|
||||
<password>wso2carbon</password>
|
||||
<driverClassName>org.h2.Driver</driverClassName>
|
||||
<defaultAutoCommit>true</defaultAutoCommit>
|
||||
<defaultAutoCommit>false</defaultAutoCommit>
|
||||
<maxActive>50</maxActive>
|
||||
<maxWait>60000</maxWait>
|
||||
<testOnBorrow>true</testOnBorrow>
|
||||
|
||||
@ -42,7 +42,7 @@ if (uriMatcher.match("/{context}/api/user/login/")) {
|
||||
log.debug("User Logged In : " + user);
|
||||
}
|
||||
|
||||
var hasDevcies = (deviceManagementService.getDeviceListOfUser(username).size() >= 1);
|
||||
var hasDevcies = (deviceManagementService.getDevicesOfUser(username).size() >= 1);
|
||||
|
||||
if(hasDevcies){
|
||||
response.sendRedirect(constants.WEB_APP_CONTEXT+"/devices");
|
||||
|
||||
@ -28,7 +28,7 @@ utility = function () {
|
||||
var publicMethods = {};
|
||||
|
||||
publicMethods.getDeviceManagementService = function () {
|
||||
return getOsgiService('org.wso2.carbon.device.mgt.core.service.DeviceManagementService');
|
||||
return getOsgiService('org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService');
|
||||
};
|
||||
|
||||
publicMethods.getUserManagementService = function () {
|
||||
|
||||
@ -181,6 +181,9 @@
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.commons:org.wso2.carbon.user.mgt.feature:${carbon.commons.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.commons:org.wso2.carbon.ntask.core.feature:${carbon.commons.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Carbon Commons Features -->
|
||||
|
||||
<!-- Carbon Multi-tenancy Features -->
|
||||
@ -423,6 +426,10 @@
|
||||
<id>org.wso2.carbon.user.mgt.feature.group</id>
|
||||
<version>${carbon.commons.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.ntask.core.feature.group</id>
|
||||
<version>${carbon.commons.version}</version>
|
||||
</feature>
|
||||
<!-- End of Carbon Commons Features -->
|
||||
|
||||
<!-- Carbon Multi-tenancy Features -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user