add a modal that allows one to scroll through all wiki pages

This commit is contained in:
Michael Q Larson
2015-03-30 15:55:00 -07:00
parent 23a3e235a7
commit 106a10edca
6 changed files with 47 additions and 19 deletions

View File

@ -35,6 +35,7 @@ exports.returnIndividualWiki = function(req, res, next) {
};
exports.showAllWikis = function(req, res) {
var data = {};
data.wikiList = resources.allWikiNames();
res.send(data);
};