Skip to content

Commit

Permalink
change routes order
Browse files Browse the repository at this point in the history
  • Loading branch information
Leouarz committed Feb 2, 2022
1 parent 82cc089 commit 335e02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/controllers/nfts/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export default express
.get("/", controller.getNFTs)
.get("/history", controller.getHistory)
.get("/total-on-sale", controller.getTotalOnSale)
.post("/like", controller.likeNft)
.post("/unlike", controller.unlikeNft)
.get("/:id", controller.getNFT)
.get("/stat/:id", controller.getStatNFTsUser)
.get("/series/data", controller.getNFTsBySeries)
.get("/series/status/:seriesId", controller.getSeriesStatus)
.get("/series/can-add", controller.canAddToSeries)
.post("/like", controller.likeNft)
.post("/unlike", controller.unlikeNft)
.post("/add-nfts-categories", controller.addCategoriesNFTs)

0 comments on commit 335e02e

Please sign in to comment.