Add files via upload

This commit is contained in:
Richard Gingrich
2024-08-06 15:53:05 -06:00
committed by GitHub
commit 5ca105d4f2
21 changed files with 4428 additions and 0 deletions

9
api/routes/matchings.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require("express");
const router = express.Router({ mergeParams: true });
const matchings = require("../controllers/matchings");
router.route('/matchings/:userId')
.get(matchings.retrieveMatchHistory);
module.exports = router;