refactor: changed /info router from POST to GET

This commit is contained in:
MasterAcnolo
2026-08-07 21:13:12 +02:00
committed by MasterAcnolo
parent c67a1511a5
commit df0952c231
3 changed files with 23 additions and 10 deletions

View File

@@ -2,6 +2,6 @@ const express = require("express");
const router = express.Router();
const { infoController } = require("../controller/info.controller");
router.post("/", infoController);
router.get("/", infoController);
module.exports = router;