Skip to content

Commit

Permalink
issue-28941 Minor refactoring to modify Improve password validation m…
Browse files Browse the repository at this point in the history
…essage
  • Loading branch information
Neeha2383 committed Aug 21, 2024
1 parent 7ad6b2a commit 23af5d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public Map<String, Object> addUser(String userId, String firstName, String lastN
if (localTransaction) {
HibernateUtil.rollbackTransaction();
}
throw new DotDataException(LanguageUtil.get(uWebAPI.getLoggedInUser(request),"User-Info-Save-Failed : " + e.getMessage()),"User-Info-Save-Failed",e);
throw new DotDataException(LanguageUtil.get(uWebAPI.getLoggedInUser(request), e.getMessage()),"User-Info-Save-Failed",e);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4739,7 +4739,7 @@ user-id=User ID
User-Info-Save-Failed=User Information Save Failed
User-Info-Save-First-Name-Failed=First Name not valid
User-Info-Save-Last-Name-Failed=Last Name not valid
User-Info-Save-Password-Failed=The password does not meet the system security requirements. It must contain at least 8 characters and no white spaces.
User-Info-Save-Password-Failed=Your password must be at least 8 characters long and include at least and one special character from the list # % + : = ? @ It must not contain spaces.
User-Info-Save-Password-Recycle-Failed=The password has been already used lately and cannot be reused yet.
user-info-saved=User info saved
User-Info-Saved=User Information Saved
Expand Down

0 comments on commit 23af5d2

Please sign in to comment.