Skip to content
Snippets Groups Projects
Commit 14e44e28 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

changed default password

parent a6809172
No related branches found
No related tags found
No related merge requests found
Pipeline #252 passed
......@@ -22,7 +22,7 @@ public class UserService
if(userRepository.findAll().size() == 0)
{
BCryptPasswordEncoder bCryptPasswordEncoder = new BCryptPasswordEncoder();
String encryptedPassword = bCryptPasswordEncoder.encode("123");
String encryptedPassword = bCryptPasswordEncoder.encode("BudgetMaster");
User user = new User("Default", encryptedPassword);
userRepository.save(user);
Logger.info("Created default user");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment