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

28 lines
633 B

Package.describe({
name: 'rocketchat:crowd',
version: '1.0.0',
summary: 'Accounts login handler for crowd using atlassian-crowd-client from npm',
git: ''
});
Package.onUse(function(api) {
api.use('rocketchat:logger');
api.use('rocketchat:lib');
api.use('ecmascript');
api.use('sha');
api.use('templating', 'client');
api.use('accounts-base', 'server');
api.use('accounts-password', 'server');
api.addFiles('client/loginHelper.js', 'client');
api.addFiles('server/crowd.js', 'server');
api.addFiles('server/settings.js', 'server');
api.export('CROWD', 'server');
});
Npm.depends({
'atlassian-crowd': '0.5.0'
});