Fixed mocha tests by not using expiresInMinutes

Using `expiresInMinutes` leads to errors, as it was deprecated in
`jsonwebtoken` > 5.7.0.
We should use `expiresIn` instead.
This commit is contained in:
Root-Core
2017-04-19 00:33:26 +02:00
parent 4033483154
commit 250312152a
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ exports.start = function (options, callback) {
};
// We are sending the profile inside the token
var token = jwt.sign(profile, options.secret, { expiresInMinutes: 60*5 });
var token = jwt.sign(profile, options.secret, { expiresIn: 60*60*5 });
res.json({token: token});
});

View File

@ -38,7 +38,7 @@ exports.start = function (callback) {
};
// We are sending the profile inside the token
var token = jwt.sign(profile, options.secret, { expiresInMinutes: 60*5 });
var token = jwt.sign(profile, options.secret, { expiresIn: 60*60*5 });
res.json({token: token});
});