Add files via upload
This commit is contained in:
9
api/routes/matchings.js
Normal file
9
api/routes/matchings.js
Normal 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;
|
||||
Reference in New Issue
Block a user