mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 20:47:06 -04:00
9 lines
235 B
JavaScript
9 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,
|
|
});
|
|
}
|
|
});
|