Site.getAll created, basic Index generating

This commit is contained in:
2020-01-05 16:10:46 -05:00
parent 2ee5504efc
commit 78ae7f3a03
5 changed files with 28 additions and 3 deletions

View File

@ -11,5 +11,11 @@ module.exports = {
res.render('site', { title: site.site, site: site });
}
});
},
getAll: function(req, res){
Site.getAll(function(err, sites){
if(err) throw err;
res.render('index', { title: "Home", sites: sites });
});
}
}