Merge pull request #3222 from kensible/3185-network-credential-password

Password is no longer required for network credential
This commit is contained in:
kensible 2016-08-10 14:23:02 -04:00 committed by GitHub
commit a20e87c046

View File

@ -161,7 +161,7 @@ angular.module('CredentialsHelper', ['Utilities'])
break;
case 'net':
scope.username_required = true;
scope.password_required = true;
scope.password_required = false;
scope.passwordLabel = 'Password';
scope.sshKeyDataLabel = 'SSH Key';
break;