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-channel-settings.../package.js

33 lines
713 B

Package.describe({
name: 'rocketchat:channel-settings-mail-messages',
version: '0.0.1',
summary: 'Channel Settings - Mail Messages',
git: ''
});
Package.onUse(function(api) {
api.use([
'ecmascript',
'templating',
'reactive-var',
'less',
'rocketchat:lib',
'rocketchat:channel-settings',
'mongo'
]);
api.addFiles([
'client/lib/startup.js',
'client/stylesheets/mail-messages.less',
'client/views/channelSettingsMailMessages.html',
'client/views/channelSettingsMailMessages.js',
'client/views/mailMessagesInstructions.html',
'client/views/mailMessagesInstructions.js'
], 'client');
api.addFiles([
'server/lib/startup.js',
'server/methods/mailMessages.js'
], 'server');
});