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

13 lines
316 B

RocketChat.Migrations.add({
version: 34,
up() {
return RocketChat.models.Settings.update({
_id: 'Layout_Login_Header',
value: '<a class="logo" href="/"><img src="/assets/logo/logo.svg?v=3" /></a>'
}, {
$set: {
value: '<a class="logo" href="/"><img src="/assets/logo?v=3" /></a>'
}
});
}
});