feat(backend): update gestionnaire creation logic and clean up DTOs

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-24 10:26:24 +01:00
co-authored by Cursor
parent f9477d3fbe
commit 10ebc77ba1
4 changed files with 20 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
const bcrypt = require('bcrypt');
const pass = '!Bezons2014';
bcrypt.hash(pass, 10).then(hash => {
console.log('New Hash:', hash);
}).catch(err => console.error(err));