fix global variabel default password

This commit is contained in:
dirgantarasiahaan
2023-05-29 22:01:41 +07:00
parent 8a7448210e
commit 746d7ec4ae
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ import org.springframework.stereotype.Service;
@Service
public class PostCreateUserService implements BaseService<UsersRequest, UsersResponse> {
@Value("${config.default-password:plgg123}")
@Value("${config.password.default-password:plgg123}")
private String defaultPassword;
private UsersRepository usersRepository;