feat(api): add schedule series delete endpoint

This commit is contained in:
avicenan
2026-03-25 13:45:10 +07:00
parent ab14a0b670
commit ab40036f45
3 changed files with 77 additions and 0 deletions

View File

@ -213,6 +213,7 @@ export class RoutePrivate {
app.get('/api/schedule/options', ScheduleController.options)
app.get('/api/schedule/calendar', ScheduleController.calendar)
app.post('/api/schedule/:id/create-exception', ScheduleController.createException)
app.delete('/api/schedule/delete/:id/:hard', ScheduleController.delete)
app.get('/api/doctor-item/list', DoctorItemController.listAll)
app.get('/api/doctor-item/list-fav', DoctorItemController.listFav)