mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02: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,
|
||
|
});
|
||
|
}
|
||
|
});
|