Adding bsides slides

This commit is contained in:
Kgothatso
2019-12-07 21:22:38 +02:00
parent e07ab9cee0
commit ebb36c954e
9 changed files with 444 additions and 7 deletions

View File

@@ -19,6 +19,14 @@ module.exports = function (options) {
})
});
router.route('/bsides')
.get(function(request, response, next) {
response.render("bsides", {
user: request.user,
pageTitle: "HDAuth - Bsides 2019"
})
});
// TODO: load child routers automatically
var accountRouter = require('./account/index.js')(options);
var xpubAuth = require('./xpub-auth/index.js')(options);