feat: admin component

This commit is contained in:
NGPixel
2018-02-28 00:54:09 -05:00
parent a4f00e795c
commit 0ccdf10c9d
11 changed files with 255 additions and 33 deletions

View File

@@ -8,6 +8,13 @@ router.get('/e/*', (req, res, next) => {
res.render('main/editor')
})
/**
* Administration
*/
router.get(['/a', '/a/*'], (req, res, next) => {
res.render('main/admin')
})
/**
* View document
*/