Skip to content

Commit

Permalink
HOTFIX
Browse files Browse the repository at this point in the history
  • Loading branch information
EtanoloYT committed Feb 11, 2025
1 parent d6aedf3 commit 97c03b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/database/database_seeder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default class DatabaseSeeder {
// Create users
const admin = new User({
email: '[email protected]',
password: bcrypt.hash('Admin123', 10),
password: bcrypt.hashSync('Admin123', 10),
firstName: 'Admin',
lastName: 'Citium',
role: 'admin',
Expand All @@ -24,7 +24,7 @@ export default class DatabaseSeeder {

const user = new User({
email: '[email protected]',
password: bcrypt.hash('Password123', 10),
password: bcrypt.hashSync('Password123', 10),
firstName: 'Mario',
lastName: 'Rossi',
})
Expand Down

0 comments on commit 97c03b0

Please sign in to comment.