Fix dockerfile being able to pass in params
Change config directory to local config_app one
This commit is contained in:
parent
acf242f241
commit
13293ecdea
14 changed files with 45 additions and 30 deletions
|
@ -324,8 +324,5 @@ angular.module('quay-config').factory('ApiService', ['Restangular', '$q', 'UtilS
|
|||
};
|
||||
};
|
||||
|
||||
// todo: remove hacks
|
||||
apiService.scRegistryStatus = () => new Promise(() => { hello: true });
|
||||
|
||||
return apiService;
|
||||
}]);
|
||||
|
|
|
@ -196,6 +196,7 @@ const templateUrl = require('./setup.html');
|
|||
};
|
||||
|
||||
$scope.isStep = function(step) {
|
||||
console.log('current step is', step);
|
||||
for (var i = 1; i < arguments.length; ++i) {
|
||||
if (arguments[i] == step) {
|
||||
return true;
|
||||
|
|
Reference in a new issue