690401:1326 fix secutities uuid
CI / CD Pipeline / build (push) Successful in 28m24s
CI / CD Pipeline / deploy (push) Failing after 16m23s

This commit is contained in:
2026-04-01 13:26:19 +07:00
parent 83b04773f7
commit 1d868d10b3
17 changed files with 105 additions and 185 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ export async function seedUsers(dataSource: DataSource) {
];
const salt = await bcrypt.genSalt();
const password = await bcrypt.hash('password123', salt); // Default password
const password = await bcrypt.hash('Center2025', salt); // Default password (ADR-019 aligned)
for (const u of usersData) {
let user = await userRepo.findOneBy({ username: u.username });