Feature: add resource to list all accounts

This commit is contained in:
2015-09-29 13:16:14 +00:00
parent 9acd8af035
commit a28ed5d302
8 changed files with 255 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ module.exports = function(app) {
}
})
app.get('*', function(req, res) {
app.get('*', function(req, res, next) {
res.sendfile('./public/index.html');
});
};