Compare commits

...

2 Commits

Author SHA1 Message Date
Jakob Borg
63ae2f64cf Woops: /rest/system/errors -> /rest/system/error 2015-04-07 13:46:39 +02:00
Jakob Borg
105103fae0 Woops: /rest/system/report -> /rest/svc/report 2015-04-07 13:33:37 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ angular.module('syncthing.core')
$scope.version = data.version;
}).error($scope.emitHTTPError);
$http.get(urlbase + '/system/report').success(function (data) {
$http.get(urlbase + '/svc/report').success(function (data) {
$scope.reportData = data;
}).error($scope.emitHTTPError);
@@ -385,7 +385,7 @@ angular.module('syncthing.core')
}
function refreshErrors() {
$http.get(urlbase + '/system/errors').success(function (data) {
$http.get(urlbase + '/system/error').success(function (data) {
$scope.errors = data.errors;
console.log("refreshErrors", data);
}).error($scope.emitHTTPError);

View File

File diff suppressed because one or more lines are too long