chatty / routers /profileRouter.js
arabdullah's picture
@ARAbdullaSL
a0fda44 verified
const express = require("express");
const profileController = require("../controllers/profileController");
const router = express.Router();
router
.route("/")
.get(profileController.getSelfProfile)
.patch(profileController.updateSelfProfile);
module.exports = router;