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/v074.js

19 lines
500 B

import { Migrations } from '../../../app/migrations';
import { Settings } from '../../../app/models';
Migrations.add({
version: 74,
up() {
if (Settings) {
Settings.remove({ _id: 'Assets_favicon_64' });
Settings.remove({ _id: 'Assets_favicon_96' });
Settings.remove({ _id: 'Assets_favicon_128' });
Settings.remove({ _id: 'Assets_favicon_256' });
Settings.update({ _id: 'Assets_favicon_192' }, {
$set: {
i18nLabel: 'android-chrome 192x192 (png)',
},
});
}
},
});