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

42 lines
2.0 KiB

RocketChat.Migrations.add({
version: 44,
up() {
if (RocketChat && RocketChat.models && RocketChat.models.Users) {
RocketChat.models.Users.find({ $or: [ { 'settings.preferences.disableNewRoomNotification': { $exists: 1 } }, { 'settings.preferences.disableNewMessageNotification': { $exists: 1 } } ] }).forEach(function(user) {
const newRoomNotification = !(user && user.settings && user.settings.preferences && user.settings.preferences.disableNewRoomNotification);
const newMessageNotification = !(user && user.settings && user.settings.preferences && user.settings.preferences.disableNewMessageNotification);
RocketChat.models.Users.update({ _id: user._id }, { $unset: { 'settings.preferences.disableNewRoomNotification': 1, 'settings.preferences.disableNewMessageNotification': 1 }, $set: { 'settings.preferences.newRoomNotification': newRoomNotification, 'settings.preferences.newMessageNotification': newMessageNotification } });
});
}
if (RocketChat && RocketChat.models && RocketChat.models.Settings) {
const optOut = RocketChat.models.Settings.findOne({ _id: 'Statistics_opt_out' });
if (optOut) {
RocketChat.models.Settings.remove({ _id: 'Statistics_opt_out' });
RocketChat.models.Settings.upsert({ _id: 'Statistics_reporting' }, {
$set: {
value: !optOut.value ? true : false,
i18nDescription: 'Statistics_reporting_Description',
packageValue: true,
i18nLabel: 'Statistics_reporting'
}
});
}
}
if (RocketChat && RocketChat.models && RocketChat.models.Settings) {
const favoriteRooms = RocketChat.models.Settings.findOne({ _id: 'Disable_Favorite_Rooms' });
if (favoriteRooms) {
RocketChat.models.Settings.remove({ _id: 'Disable_Favorite_Rooms' });
RocketChat.models.Settings.upsert({ _id: 'Favorite_Rooms' }, {
$set: {
value: !favoriteRooms.value ? true : false,
i18nDescription: 'Favorite_Rooms_Description',
packageValue: true,
i18nLabel: 'Favorite_Rooms'
}
});
}
}
}
});