mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
27 lines
830 B
JavaScript
27 lines
830 B
JavaScript
Package.describe({
|
|
name: 'wekan-ldap',
|
|
version: '0.0.2',
|
|
// Brief, one-line summary of the package.
|
|
summary: 'Basic meteor login with ldap',
|
|
// URL to the Git repository containing the source code for this package.
|
|
git: 'https://github.com/wekan/wekan-ldap',
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// To avoid submitting documentation, set this field to null.
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('yasaricli:slugify');
|
|
api.use('ecmascript');
|
|
api.use('underscore');
|
|
api.use('sha');
|
|
api.use('templating', 'client');
|
|
|
|
api.use('accounts-base', 'server');
|
|
api.use('accounts-password', 'server');
|
|
api.use('percolate:synced-cron', 'server');
|
|
api.addFiles('client/loginHelper.js', 'client');
|
|
|
|
api.mainModule('server/index.js', 'server');
|
|
});
|