aboutsummaryrefslogtreecommitdiff
path: root/plugin/multiplex
diff options
context:
space:
mode:
authorDavid Banham <david@banham.id.au>2012-08-15 18:57:48 +1000
committerDavid Banham <david@banham.id.au>2012-08-15 18:57:48 +1000
commit7bae52248832fe8bccb95bb4cd201898514aa56a (patch)
treeb1aa02dc05123da4d6775ba55475cf4028d9c227 /plugin/multiplex
parentb27f21e527a9b189ac4bde6e930001754d7a737b (diff)
downloadfosdem-2018-presentation-7bae52248832fe8bccb95bb4cd201898514aa56a.tar
fosdem-2018-presentation-7bae52248832fe8bccb95bb4cd201898514aa56a.tar.gz
Not got github
Diffstat (limited to 'plugin/multiplex')
-rw-r--r--plugin/multiplex/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js
index 45c9c74..4665639 100644
--- a/plugin/multiplex/index.js
+++ b/plugin/multiplex/index.js
@@ -32,6 +32,12 @@ app.configure(function() {
app.get("/", function(req, res) {
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
});
+app.get("/fixed.html", function(req, res) {
+ fs.createReadStream(opts.baseDir + '/fixed.html').pipe(res);
+});
+app.get("/fixedmaster.html", function(req, res) {
+ fs.createReadStream(opts.baseDir + '/fixedmaster.html').pipe(res);
+});
app.get("/token", function(req,res) {
var ts = new Date().getTime();