extend token expiration time to 28 days

pull/30/head
HardiReady 2018-03-11 09:50:15 +01:00
parent e19dc983cd
commit 84ab4410f5
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ let authCheck = (username, password, res) => {
AppUserModel.findOne({username: username.toLowerCase()}).populate('squad').exec((err, user) => {
if (err) deferred.reject(err.name + ': ' + err.message);
const diff = 7 * 60 * 24; // time till expiration [minutes]
const diff = 28 * 60 * 24; // time till expiration [minutes]
if (user && !user.activated) {
res.status(codes.unauthorized).send('Account is not yet activated');