Merge branch '309-add-weblite-identifier-to-autogenered-usernames' into 'dev'

Prefix random usernames with "weblite"

See merge request keanuapp/keanuapp-weblite!106
This commit is contained in:
N Pex 2022-07-01 08:34:59 +00:00
commit fdfa9e902c

View file

@ -390,7 +390,7 @@ class Util {
/** Generate a random user name */
randomUser() {
return this.randomString(
return "weblite-" + this.randomString(
12,
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
);