Skip to content

Commit

Permalink
tried to add a secret game
Browse files Browse the repository at this point in the history
  • Loading branch information
aabecker committed May 8, 2018
1 parent 14b6d26 commit e3db51f
Show file tree
Hide file tree
Showing 9 changed files with 1,794 additions and 8 deletions.
12 changes: 12 additions & 0 deletions server/appController.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,16 @@ router.get('/videos', function _renderVideos( req, res) {
});
});


router.get('/occugrid', function _renderVideos( req, res) {
URFP(req);
util.renderPage('occugrid.html.ejs', { tasks: [] })
.then( function (page) {
res.status(200).send(page);
})
.catch(function (err) {
res.status(500).send(err.toString());
});
});

module.exports = router;
Binary file added server/views/myBlack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e3db51f

Please sign in to comment.