aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js')
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js
index 3f902e86e..ac6eeeac6 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/msoService.js
@@ -42,7 +42,7 @@ var MsoService = function($http, $log, $q, PropertyService, AaiService, UtilityS
if (response.data.status < 200 || response.data.status > 202) {
throw {
type : FIELD.ID.MSO_FAILURE
- }
+ };
}
};
@@ -172,7 +172,7 @@ var MsoService = function($http, $log, $q, PropertyService, AaiService, UtilityS
getFormattedCommonResponse : function(response) {
return UtilityService.getCurrentTime() + " HTTP Status: "
+ UtilityService.getHttpStatusText(response.data.status)
- + "\n" + angular.toJson(response.data.entity, true)
+ + "\n" + angular.toJson(response.data.entity, true);
},
checkValidStatus : checkValidStatus,
@@ -326,7 +326,7 @@ var MsoService = function($http, $log, $q, PropertyService, AaiService, UtilityS
$log.debug("model info from instance", instance);
$log.debug("model info to model", modelInfo);
- return modelInfo
+ return modelInfo;
};
var payload = {
@@ -572,7 +572,7 @@ var MsoService = function($http, $log, $q, PropertyService, AaiService, UtilityS
return sendPostRequestWithBody(url, payload);
}
- }
+ };
};
appDS2.factory("MsoService", MsoService );