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/apps/meteor/server/startup/migrations/v276.ts

16 lines
435 B

import { Settings, Users } from '@rocket.chat/models';
import { addMigration } from '../../lib/migrations';
addMigration({
version: 276,
async up() {
await Users.updateMany(
{ 'settings.preferences.enableNewMessageTemplate': { $exists: 1 } },
{
$unset: { 'settings.preferences.enableNewMessageTemplate': 1 },
},
);
await Settings.removeById('Accounts_Default_User_Preferences_enableNewMessageTemplate');
},
});