Skip to content

Instantly share code, notes, and snippets.

@geekgonecrazy
Created January 10, 2019 18:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save geekgonecrazy/2c12d61ae5ea93c6f2c9d77a53185d81 to your computer and use it in GitHub Desktop.
Save geekgonecrazy/2c12d61ae5ea93c6f2c9d77a53185d81 to your computer and use it in GitHub Desktop.
Get Rocket.Chat settings changed
db.rocketchat_settings.find().forEach(function(s) {
if (!s._id.match(/^Assets/) && !s._id.match(/^Layout/) && s._id !== 'css' && s.value !== s.packageValue) {
print(s._id + ' - ' + s.value);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment