11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
|
import { Router } from "express";
|
||
|
import isAuth from "../middleware/isAuth";
|
||
|
|
||
|
import * as SchedulingNotifyController from "../controllers/SchedulingNotifyController";
|
||
|
|
||
|
const schedulingNotifiyRoutes = Router();
|
||
|
|
||
|
schedulingNotifiyRoutes.delete("/schedule/:scheduleId", isAuth, SchedulingNotifyController.remove);
|
||
|
|
||
|
export default schedulingNotifiyRoutes;
|