You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
559 B

Index: js/controllers/login.js
--- js/controllers/login.js.orig 2014-12-05 14:44:49.000000000 +0100
+++ js/controllers/login.js 2015-01-11 11:48:39.357993008 +0100
@@ -28,7 +28,7 @@
$location.path('/boards');
}).error(function(data, status) {
$scope.isSaving = false;
- $scope.errors.push(data.message);
+ $scope.errors.push(data.message + ": " + data.data);
if (status === 503) {
$scope.errors[0] = $scope.errors[0] + ' Ensure api directory is writable.';
}