Allow generating random numbers in nick on page load

This commit is contained in:
Pavel Djundik 2018-02-21 17:29:22 +02:00
parent e957a52e43
commit 906e79f39b
2 changed files with 6 additions and 1 deletions

View file

@ -236,6 +236,9 @@ module.exports = {
//
// Nick
//
// Percent sign (%) will be replaced into a random number from 0 to 9.
// For example, Guest%%% will become Guest123 on page load.
//
// @type string
// @default "lounge-user"
//

View file

@ -521,7 +521,7 @@ function getClientConfiguration() {
config.themes = themes.getAll();
if (config.displayNetwork) {
config.defaults = Helper.config.defaults;
config.defaults = _.clone(Helper.config.defaults);
} else {
// Only send defaults that are visible on the client
config.defaults = _.pick(Helper.config.defaults, [
@ -533,6 +533,8 @@ function getClientConfiguration() {
]);
}
config.defaults.nick = config.defaults.nick.replace(/%/g, () => Math.floor(Math.random() * 10));
return config;
}