MT#63340 Fix generate password

Removed `&` from symbols to avoid invalid
characters in generated passwords

Change-Id: Iea37ad73e22df4d35b3834e713308a9b0605c252
(cherry picked from commit 2c548413a4)
(cherry picked from commit fd0f8d8c9c)
mr12.5.1
nidrissi-zouggari 4 months ago committed by Nouhaila Idrissi-Zouggari
parent f79636cb24
commit 0eecf03378

@ -21,7 +21,7 @@ import {
} from './user'
const minValue = 3
const generateSymbols = '!@#$%^&*()_+~`|}{[]:;?><,./-='
const generateSymbols = '!@#$%^*()_+~`|}{[]:;?><,./-='
const generateNumbers = '0123456789'
const generateLowercase = 'abcdefghijklmnopqrstuvwxyz'
const generateUppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

Loading…
Cancel
Save