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/packages/rocketchat-message-snippet/client/tabBar/tabBar.js

17 lines
437 B

Meteor.startup(function() {
Tracker.autorun(function() {
if (RocketChat.settings.get("Message_AllowSnippeting")) {
RocketChat.TabBar.addButton({
groups: ["channel", "privategroup", "directmessages"],
id: "snippeted-messages",
i18nTitle: 'Snippeted_Messages',
icon: 'icon-code',
template: 'snippetedMessages',
order: 20
});
} else {
RocketChat.TabBar.removeButton("snippeted-messages");
}
});
});