The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/server/startup/migrations/v137.js

10 lines
409 B

RocketChat.Migrations.add({
version: 137,
up() {
const firstUser = RocketChat.models.Users.getOldest({ emails: 1 });
const reportStats = RocketChat.settings.get('Statistics_reporting');
RocketChat.models.Settings.updateValueById('Organization_Email', firstUser && firstUser.emails && firstUser.emails[0].address);
RocketChat.models.Settings.updateValueById('Register_Server', reportStats);
},
});