Skip to content

Commit 2c54841

Browse files
author
nidrissi-zouggari
committed
MT#63340 Fix generate password
Removed `&` from symbols to avoid invalid characters in generated passwords Change-Id: Iea37ad73e22df4d35b3834e713308a9b0605c252
1 parent 1a9a18b commit 2c54841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/subscriber.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { assignNumbers } from 'src/api/user'
1515
import { getJsonBody } from 'src/api/utils'
1616

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

0 commit comments

Comments
 (0)