Skip to content

Commit 53d705d

Browse files
committed
resolve conflicts keeping our version
1 parent 2d5da45 commit 53d705d

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/routes/patient.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,11 @@ import * as patientController from '../controllers/patient.js';
55
const router = express.Router();
66

77

8-
<<<<<<< HEAD
98
router.get('/', protect, authorize('admin', 'doctor','receptionist'), patientController.getPatients);
109

1110
router.post('/', protect, authorize('admin', 'doctor','receptionist'), patientController.createPatient);
1211

1312
router.put('/:id', protect, authorize('admin', 'doctor','receptionist'), patientController.updatePatient);
14-
=======
15-
router.get('/', protect, authorize('admin', 'doctor', 'receptionist'), patientController.getPatients);
16-
17-
router.get('/:id', protect, authorize('admin', 'doctor', 'receptionist'), patientController.getPatientById);
18-
19-
router.post('/', protect, authorize('admin', 'doctor', 'receptionist'), patientController.createPatient);
20-
21-
router.put('/:id', protect, authorize('admin', 'doctor', 'receptionist'), patientController.updatePatient);
22-
>>>>>>> recovery-branch
2313

2414
router.delete('/:id', protect, authorize('admin','receptionist'), patientController.deletePatient);
2515

0 commit comments

Comments
 (0)