2022-03-12 05:13:15 +00:00
|
|
|
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);
|
|
|
|
|
2022-03-21 05:06:56 +00:00
|
|
|
schedulingNotifiyRoutes.get("/schedules", isAuth, SchedulingNotifyController.reportScheduleNotifyByDateStartDateEnd);
|
|
|
|
|
2022-03-12 05:13:15 +00:00
|
|
|
export default schedulingNotifiyRoutes;
|