Added a endpoint to fetch a random emoji.

This commit is contained in:
2018-03-06 22:02:32 +01:00
parent e65d4125b9
commit fac9e0e425
2 changed files with 27 additions and 0 deletions

View File

@@ -106,6 +106,10 @@ router.get('/v1/tmdb/:mediaId', require('./controllers/tmdb/readMedia.js'));
*/
router.post('/v1/git/dump', require('./controllers/git/dumpHook.js'));
/**
* misc
*/
router.get('v1/emoji', require('./controllers/misc/emoji.js'));
// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api

File diff suppressed because one or more lines are too long