mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
|
|
Meteor.startup(() => {
|
||
|
|
if (Meteor.isServer) {
|
||
|
|
import { AccountsCommon } from 'meteor/accounts-base';
|
||
|
|
|
||
|
|
Accounts.config({
|
||
|
|
loginExpirationInDays: process.env.ACCOUNTS_COMMON_LOGIN_EXPIRATION_IN_DAYS || 90,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|