enable unauthorized access to docs

This commit is contained in:
Zachary Carter 2012-12-07 11:25:12 -08:00
Родитель fb90e739d1
Коммит f1e710391d
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -33,6 +33,9 @@ apiOptions.auth.getCredentialsFunc = credentialsFunc;
var bindTo = config.process.api;
var server = new Hapi.Server(bindTo.host, bindTo.port, apiOptions);
// don't require authorization for docs
server._routes['get'][0].config.auth = config.hapi.docs.auth;
console.log("api starting up");
// now load up api handlers

Просмотреть файл

@ -21,7 +21,11 @@ var config = module.exports = {
},
hapi: {
name: "Gombot API Server",
docs: true,
docs: {
auth: {
mode: 'none'
}
},
auth: {
scheme: 'hawk'
}