From ef2247fce05fe741c80eeb6c0afc134e6eb8a1f8 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Fri, 12 Jun 2015 12:04:35 -0400 Subject: [PATCH] fixed password validation rules --- awx/ui/static/js/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/config.js b/awx/ui/static/js/config.js index c9d63161af..f19a844b67 100644 --- a/awx/ui/static/js/config.js +++ b/awx/ui/static/js/config.js @@ -36,7 +36,7 @@ password_hasLowercase: true, // require a lowercase letter in the password password_hasUppercase: true, // require an uppercase letter in the password password_hasNumber: true, // require a number in the password - password_hasSymbol: true, // require one of these symbols to be + password_hasSymbol: false, // require one of these symbols to be // in the password: -!$%^&*()_+|~=`{}[]:";'<>?,./ session_timeout: 1800, // Number of seconds before an inactive session is automatically timed out and forced to log in again.