Initialized Project with default middlewares and helpers, connected to Atlas Instance and created Swagger Setup. Created necessary DB models and authentication-authorization logic
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { Router } from "express";
|
||||
import {
|
||||
createOrEditProfileController,
|
||||
getProfileController,
|
||||
} from "../controllers/profile.controller";
|
||||
import { authorize } from "../middlewares/jwt.middleware";
|
||||
|
||||
const router = new Router();
|
||||
|
||||
router.post(
|
||||
"/",
|
||||
authorize("generic", "generic"),
|
||||
createOrEditProfileController,
|
||||
);
|
||||
router.get("/", authorize("generic", "generic"), getProfileController);
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user