password se agrego 2 caracteres más a la string
This commit is contained in:
@@ -19,9 +19,9 @@ export class BcryptService {
|
||||
}
|
||||
|
||||
generarPassword = () => {
|
||||
const length = 8;
|
||||
const length = 10;
|
||||
const charset =
|
||||
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
||||
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-@#$%&=?¿*()/_-';
|
||||
let password = '';
|
||||
|
||||
for (let i = 0; i < length; i++)
|
||||
|
||||
Reference in New Issue
Block a user