aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app.js
diff options
context:
space:
mode:
authorDennis Eriksen <dennis.se@gmail.com>2013-04-30 13:31:00 +0200
committerDennis Eriksen <dennis.se@gmail.com>2013-04-30 13:31:00 +0200
commit7ef5bc29e6032ae9f7318ae5790e45057f7e5b4f (patch)
tree3aec3ef13a0c5f92322c2f5999f44f4e4c31d1b3 /app.js
parentMerge branch 'master' of github.com:dennisse/Divid (diff)
downloadDivid-7ef5bc29e6032ae9f7318ae5790e45057f7e5b4f.tar.gz
renamed router to routes as it now contains more static routes, than actually working as a router
Diffstat (limited to '')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index f9aa1b9..618ef8d 100644
--- a/app.js
+++ b/app.js
@@ -44,7 +44,7 @@ require('./config/express')(app, config, passport);
/**
* Routes
*/
-require('./router')(app, passport, auth);
+require('./routes')(app, passport, auth);
/**