Hi @dannyjamesfletcher, According to the article, Turns out I already have the endpoint. I was just confused
here it is:
const express = require('express');
const router = express.Router();
const gameController = require("../controller/game.controller");
const multerInstance = require('./multer')
router.post("/game", multerInstance.single('image'),
gameController.createGame
)
The first code I pasted at the top is my controller.js file. Did I do it right?