Skip to content

Commit

Permalink
Merge pull request #133 from partio-scout/feature/extend-session-length
Browse files Browse the repository at this point in the history
Extend session length to 4 hours
  • Loading branch information
pompost authored Jul 17, 2016
2 parents 539b17d + 60da2da commit ae9fabe
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 ae9fabe

Please sign in to comment.