summaryrefslogtreecommitdiffstats
path: root/index.js
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2016-01-27 16:17:46 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2016-01-27 16:17:46 +0200
commit14e720b22ac33e87ebb7136299f1e43c8977d076 (patch)
tree0c651deb0c2b88603d0501d426d5ad9cbb8f28b5 /index.js
parentf0728f43e3ea644438844ba9ba1294b40f528e43 (diff)
Add list pagemaster
Diffstat (limited to 'index.js')
-rw-r--r--index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/index.js b/index.js
index 15c269f..5ea7cee 100644
--- a/index.js
+++ b/index.js
@@ -21,6 +21,9 @@ app.get('/adm', function(req, res) {
app.get('/log', function(req, res) {
res.sendFile(__dirname + '/templates/log.html');
});
+app.get('/list', function(req, res) {
+ res.sendFile(__dirname + '/templates/list.html');
+});
//route all paths beginning with /f/ to real files
app.get('/f/*', function(req, res) {