use app instead of server in boot directories

This commit is contained in:
Berkeley Martinez
2015-06-03 12:26:11 -07:00
parent 79cbe13c62
commit 65cde59f0d
4 changed files with 13 additions and 14 deletions

View File

@ -1,4 +1,4 @@
module.exports = function enableAuthentication(server) {
module.exports = function enableAuthentication(app) {
// enable authentication
server.enableAuth();
app.enableAuth();
};