mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
17 lines
422 B
JavaScript
17 lines
422 B
JavaScript
/* global Package */
|
|
|
|
Package.describe({
|
|
name: 'wekan-accounts-lockout',
|
|
version: '1.0.0',
|
|
summary: 'Meteor package for locking user accounts and stopping brute force attacks',
|
|
git: 'https://github.com/lucasantoniassi/meteor-accounts-lockout.git',
|
|
documentation: 'README.md',
|
|
});
|
|
|
|
Package.onUse((api) => {
|
|
api.use([
|
|
'ecmascript',
|
|
'accounts-password',
|
|
]);
|
|
api.mainModule('accounts-lockout.js');
|
|
});
|