default password generated is 14 length
This commit is contained in:
parent
7e8978c7fc
commit
b0c1b7b683
|
@ -40,7 +40,7 @@
|
||||||
$scope.generatePassword = function () {
|
$scope.generatePassword = function () {
|
||||||
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
||||||
$analytics.eventTrack('Generated Password From Add');
|
$analytics.eventTrack('Generated Password From Add');
|
||||||
$scope.cipher.login.password = passwordService.generatePassword({ length: 12, special: true });
|
$scope.cipher.login.password = passwordService.generatePassword({ length: 14, special: true });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
$scope.generatePassword = function () {
|
$scope.generatePassword = function () {
|
||||||
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
||||||
$analytics.eventTrack('Generated Password From Edit');
|
$analytics.eventTrack('Generated Password From Edit');
|
||||||
$scope.cipher.login.password = passwordService.generatePassword({ length: 12, special: true });
|
$scope.cipher.login.password = passwordService.generatePassword({ length: 14, special: true });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
$scope.generatePassword = function () {
|
$scope.generatePassword = function () {
|
||||||
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
||||||
$analytics.eventTrack('Generated Password From Add');
|
$analytics.eventTrack('Generated Password From Add');
|
||||||
$scope.cipher.login.password = passwordService.generatePassword({ length: 12, special: true });
|
$scope.cipher.login.password = passwordService.generatePassword({ length: 14, special: true });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
$scope.generatePassword = function () {
|
$scope.generatePassword = function () {
|
||||||
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
if (!$scope.cipher.login.password || confirm('Are you sure you want to overwrite the current password?')) {
|
||||||
$analytics.eventTrack('Generated Password From Edit');
|
$analytics.eventTrack('Generated Password From Edit');
|
||||||
$scope.cipher.login.password = passwordService.generatePassword({ length: 12, special: true });
|
$scope.cipher.login.password = passwordService.generatePassword({ length: 14, special: true });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue