Update: video/:id to video/get/:id
This commit is contained in:
parent
5fffe19d98
commit
0cf76acdfe
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ module.exports = app => {
|
||||||
router.get("/video/search", videos.search);
|
router.get("/video/search", videos.search);
|
||||||
|
|
||||||
// Get Video with id of source
|
// Get Video with id of source
|
||||||
router.get("/video/:id", videos.get);
|
router.get("/video/get/:id", videos.get);
|
||||||
|
|
||||||
// Create a new Video
|
// Create a new Video
|
||||||
router.post("/video/create/:id", videos.create);
|
router.post("/video/create/:id", videos.create);
|
||||||
|
|
|
||||||
Reference in a new issue