Skip to content

Commit 6982db6

Browse files
authored
Merge pull request #329 from hackmcgill/develop
Merge into Master
2 parents 1a4c43b + 85972bb commit 6982db6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.use(cookieSession({
6161
name: "session",
6262
keys: [process.env.COOKIE_SECRET],
6363
// Cookie Options
64-
maxAge: 60 * 60 * 1000 //Logged in for 1 hour
64+
maxAge: 48 * 60 * 60 * 1000 //Logged in for 48 hours
6565
}));
6666
app.use(passport.initialize());
6767
app.use(passport.session()); //persistent login session

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"handlebars": "^4.0.12",
2828
"jsonwebtoken": "^8.1.0",
2929
"memory-cache": "^0.2.0",
30-
"mongoose": "^5.4.8",
30+
"mongoose": "^5.4.9",
3131
"multer": "^1.3.1",
3232
"passport": "^0.4.0",
3333
"passport-local": "^1.0.0",
@@ -39,7 +39,7 @@
3939
"@types/express": "^4.16.1",
4040
"@types/google-cloud__storage": "^1.7.2",
4141
"@types/mongodb": "^3.1.19",
42-
"@types/mongoose": "^5.3.10",
42+
"@types/mongoose": "^5.3.12",
4343
"@types/multer": "^1.3.7",
4444
"apidoc": "^0.17.7",
4545
"chai-http": "^4.2.1",

0 commit comments

Comments
 (0)