import express from "express";
import { itemPhotosUpload, itemPhotosReorder, fullSuitPhotoUpload } from "~/services/photos";

// eslint-disable-next-line new-cap
const router = express.Router();

router.post("/", async function (req, res, next) {
	res.json(await itemPhotosUpload(req));
});

router.put("/", async function (req, res, next) {
	res.json(await itemPhotosReorder(req.body));
});

export default router;
