Update: video/:id to video/get/:id

This commit is contained in:
Yûki VACHOT 2021-12-11 11:00:01 +01:00
parent 5fffe19d98
commit 0cf76acdfe

View file

@ -6,7 +6,7 @@ module.exports = app => {
router.get("/video/search", videos.search);
// Get Video with id of source
router.get("/video/:id", videos.get);
router.get("/video/get/:id", videos.get);
// Create a new Video
router.post("/video/create/:id", videos.create);