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-user-data-download/package.js

18 lines
408 B

Package.describe({
name: 'rocketchat:user-data-download',
version: '1.0.0',
summary: 'Adds setting to allow the user to download all their data stored in the servers.',
git: '',
});
Package.onUse(function(api) {
api.use([
'ecmascript',
'rocketchat:file',
'rocketchat:file-upload',
'rocketchat:settings',
'rocketchat:models',
'webapp',
]);
api.mainModule('server/index.js', 'server');
});