Wizard: Unique default key name

Fixes #2353

This adds a random suffix to the default activation key name, making it less predictable.
This commit is contained in:
regexowl 2024-08-16 15:29:25 +02:00 committed by Ondřej Ezr
parent 4fa0ad863b
commit 0ecf7c9887
2 changed files with 10 additions and 1 deletions

View file

@ -37,6 +37,7 @@ import {
selectRegistrationType,
} from '../../../../store/wizardSlice';
import { useGetEnvironment } from '../../../../Utilities/useGetEnvironment';
import { generateRandomId } from '../../utilities/generateRandomId';
export const PopoverActivation = () => {
const [orgId, setOrgId] = useState<string | undefined>(undefined);
@ -106,7 +107,7 @@ const ActivationKeysList = () => {
const activationKey = useAppSelector(selectActivationKey);
const registrationType = useAppSelector(selectRegistrationType);
const defaultActivationKeyName = 'activation-key-default';
const defaultActivationKeyName = `activation-key-default-${generateRandomId()}`;
const { isProd } = useGetEnvironment();
const [isOpen, setIsOpen] = useState(false);

View file

@ -0,0 +1,8 @@
export const generateRandomId = () => {
let id = '';
const characterSet = 'abcdefghijklmnopqrstuvwxyz0123456789';
while (id.length < 6) {
id += characterSet.charAt(Math.floor(Math.random() * characterSet.length));
}
return id;
};