Skip to content

Commit b513610

Browse files
committed
added route
1 parent 04f3d02 commit b513610

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: routes/html-routes.js

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ var path = require("path");
77
module.exports = function(app, auth) {
88
//auth.requiresLogin if want to add login
99
// Send to homepage with top ten blogs displayed
10+
app.get("/null", function(req, res){
11+
res.redirect("/");
12+
})
13+
1014
app.get("/", function(req, res) {
1115
var userSub;
1216
if (req.user) {

0 commit comments

Comments
 (0)