diff --git a/src/main/kotlin/pt/up/fe/ni/website/backend/model/seeders/AccountSeeder.kt b/src/main/kotlin/pt/up/fe/ni/website/backend/model/seeders/AccountSeeder.kt index 08f9f329..eff37d3f 100644 --- a/src/main/kotlin/pt/up/fe/ni/website/backend/model/seeders/AccountSeeder.kt +++ b/src/main/kotlin/pt/up/fe/ni/website/backend/model/seeders/AccountSeeder.kt @@ -52,7 +52,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("securepass"), + password = encoder.encode("password123"), bio = faker.lorem().sentence(), birthDate = Date.from(faker.date().birthday(30, 40).toInstant()), photo = null, @@ -64,7 +64,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("anothersecurepass"), + password = encoder.encode("password123"), bio = null, birthDate = Date.from(faker.date().birthday(18, 28).toInstant()), photo = faker.internet().image(), @@ -77,7 +77,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("minpass"), + password = encoder.encode("password123"), bio = null, birthDate = Date.from(faker.date().birthday(20, 30).toInstant()), photo = null, @@ -90,7 +90,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("verysecure"), + password = encoder.encode("password123"), bio = faker.lorem().paragraph(5), birthDate = Date.from(faker.date().birthday(35, 45).toInstant()), photo = faker.internet().image(), @@ -102,7 +102,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("singlepass"), + password = encoder.encode("password123"), bio = "User with only one role.", birthDate = Date.from(faker.date().birthday(22, 32).toInstant()), photo = faker.internet().image(), @@ -115,7 +115,7 @@ class AccountSeeder( Account( name = faker.name().fullName(), email = faker.internet().emailAddress(), - password = encoder.encode("nullpass"), + password = encoder.encode("password123"), bio = null, birthDate = null, photo = null,