Skip to content

Commit

Permalink
Extend session length to 4 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
emilvirkki committed Jul 17, 2016
1 parent 539b17d commit 60da2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/boot/03-partioid-login.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function loginUser(user, app) {
}

return new Promise((resolve, reject) => {
user.createAccessToken(3600, (err, accessToken) => {
user.createAccessToken(4*3600, (err, accessToken) => {
if (err) {
reject(err);
} else {
Expand Down

0 comments on commit 60da2da

Please sign in to comment.