· 5 years ago · Sep 28, 2020, 02:54 AM
1{
2 "data": {
3 "POST/oauth/token": {
4 "method": "POST",
5 "uri": "/oauth/token",
6 "action": {
7 "uses": "\\Dusterio\\LumenPassport\\Http\\Controllers\\AccessTokenController@issueToken"
8 }
9 },
10 "GET/oauth/tokens": {
11 "method": "GET",
12 "uri": "/oauth/tokens",
13 "action": {
14 "uses": "\\Laravel\\Passport\\Http\\Controllers\\AuthorizedAccessTokenController@forUser",
15 "middleware": [
16 "auth"
17 ]
18 }
19 },
20 "DELETE/oauth/tokens/{token_id}": {
21 "method": "DELETE",
22 "uri": "/oauth/tokens/{token_id}",
23 "action": {
24 "uses": "\\Laravel\\Passport\\Http\\Controllers\\AuthorizedAccessTokenController@destroy",
25 "middleware": [
26 "auth"
27 ]
28 }
29 },
30 "POST/oauth/token/refresh": {
31 "method": "POST",
32 "uri": "/oauth/token/refresh",
33 "action": {
34 "middleware": [
35 "auth"
36 ],
37 "uses": "\\Laravel\\Passport\\Http\\Controllers\\TransientTokenController@refresh"
38 }
39 },
40 "GET/oauth/clients": {
41 "method": "GET",
42 "uri": "/oauth/clients",
43 "action": {
44 "uses": "\\Laravel\\Passport\\Http\\Controllers\\ClientController@forUser",
45 "middleware": [
46 "auth"
47 ]
48 }
49 },
50 "POST/oauth/clients": {
51 "method": "POST",
52 "uri": "/oauth/clients",
53 "action": {
54 "uses": "\\Laravel\\Passport\\Http\\Controllers\\ClientController@store",
55 "middleware": [
56 "auth"
57 ]
58 }
59 },
60 "PUT/oauth/clients/{client_id}": {
61 "method": "PUT",
62 "uri": "/oauth/clients/{client_id}",
63 "action": {
64 "uses": "\\Laravel\\Passport\\Http\\Controllers\\ClientController@update",
65 "middleware": [
66 "auth"
67 ]
68 }
69 },
70 "DELETE/oauth/clients/{client_id}": {
71 "method": "DELETE",
72 "uri": "/oauth/clients/{client_id}",
73 "action": {
74 "uses": "\\Laravel\\Passport\\Http\\Controllers\\ClientController@destroy",
75 "middleware": [
76 "auth"
77 ]
78 }
79 },
80 "GET/oauth/scopes": {
81 "method": "GET",
82 "uri": "/oauth/scopes",
83 "action": {
84 "uses": "\\Laravel\\Passport\\Http\\Controllers\\ScopeController@all",
85 "middleware": [
86 "auth"
87 ]
88 }
89 },
90 "GET/oauth/personal-access-tokens": {
91 "method": "GET",
92 "uri": "/oauth/personal-access-tokens",
93 "action": {
94 "uses": "\\Laravel\\Passport\\Http\\Controllers\\PersonalAccessTokenController@forUser",
95 "middleware": [
96 "auth"
97 ]
98 }
99 },
100 "POST/oauth/personal-access-tokens": {
101 "method": "POST",
102 "uri": "/oauth/personal-access-tokens",
103 "action": {
104 "uses": "\\Laravel\\Passport\\Http\\Controllers\\PersonalAccessTokenController@store",
105 "middleware": [
106 "auth"
107 ]
108 }
109 },
110 "DELETE/oauth/personal-access-tokens/{token_id}": {
111 "method": "DELETE",
112 "uri": "/oauth/personal-access-tokens/{token_id}",
113 "action": {
114 "uses": "\\Laravel\\Passport\\Http\\Controllers\\PersonalAccessTokenController@destroy",
115 "middleware": [
116 "auth"
117 ]
118 }
119 },
120 "GET/user/profile": {
121 "method": "GET",
122 "uri": "/user/profile",
123 "action": {
124 "uses": "App\\Http\\Controllers\\UserController@userLogin",
125 "middleware": [
126 "auth"
127 ]
128 }
129 },
130 "GET/user/logout": {
131 "method": "GET",
132 "uri": "/user/logout",
133 "action": {
134 "uses": "App\\Http\\Controllers\\UserController@logout",
135 "middleware": [
136 "auth"
137 ]
138 }
139 },
140 "POST/setting_test/saveDepartement": {
141 "method": "POST",
142 "uri": "/setting_test/saveDepartement",
143 "action": {
144 "uses": "App\\Http\\Controllers\\SettingTestController@saveDepartement",
145 "middleware": [
146 "auth"
147 ]
148 }
149 },
150 "GET/setting_test/getDepartementList": {
151 "method": "GET",
152 "uri": "/setting_test/getDepartementList",
153 "action": {
154 "uses": "App\\Http\\Controllers\\SettingTestController@getDepartementList",
155 "middleware": [
156 "auth"
157 ]
158 }
159 },
160 "POST/setting_test/saveGroup": {
161 "method": "POST",
162 "uri": "/setting_test/saveGroup",
163 "action": {
164 "uses": "App\\Http\\Controllers\\SettingTestController@saveGroup",
165 "middleware": [
166 "auth"
167 ]
168 }
169 },
170 "GET/setting_test/getTreeView": {
171 "method": "GET",
172 "uri": "/setting_test/getTreeView",
173 "action": {
174 "uses": "App\\Http\\Controllers\\SettingTestController@getTreeView",
175 "middleware": [
176 "auth"
177 ]
178 }
179 },
180 "GET/setting_test/getGroupList": {
181 "method": "GET",
182 "uri": "/setting_test/getGroupList",
183 "action": {
184 "uses": "App\\Http\\Controllers\\SettingTestController@getGroupList",
185 "middleware": [
186 "auth"
187 ]
188 }
189 },
190 "GET/setting_test/getAllMultiselectFormTest": {
191 "method": "GET",
192 "uri": "/setting_test/getAllMultiselectFormTest",
193 "action": {
194 "uses": "App\\Http\\Controllers\\SettingTestController@getAllMultiselectFormTest",
195 "middleware": [
196 "auth"
197 ]
198 }
199 },
200 "POST/setting_test/saveTest": {
201 "method": "POST",
202 "uri": "/setting_test/saveTest",
203 "action": {
204 "uses": "App\\Http\\Controllers\\SettingTestController@saveTest",
205 "middleware": [
206 "auth"
207 ]
208 }
209 },
210 "GET/setting_test/detailNodeClick": {
211 "method": "GET",
212 "uri": "/setting_test/detailNodeClick",
213 "action": {
214 "uses": "App\\Http\\Controllers\\SettingTestController@detailNodeClick",
215 "middleware": [
216 "auth"
217 ]
218 }
219 },
220 "GET/setting_test/getTypeNilaiNormal": {
221 "method": "GET",
222 "uri": "/setting_test/getTypeNilaiNormal",
223 "action": {
224 "uses": "App\\Http\\Controllers\\SettingTestController@getTypeNilaiNormal",
225 "middleware": [
226 "auth"
227 ]
228 }
229 },
230 "GET/setting_test/getAllTest": {
231 "method": "GET",
232 "uri": "/setting_test/getAllTest",
233 "action": {
234 "uses": "App\\Http\\Controllers\\SettingTestController@getAllTest",
235 "middleware": [
236 "auth"
237 ]
238 }
239 },
240 "POST/setting_test/saveAlphanumeric": {
241 "method": "POST",
242 "uri": "/setting_test/saveAlphanumeric",
243 "action": {
244 "uses": "App\\Http\\Controllers\\SettingTestController@saveAlphanumeric",
245 "middleware": [
246 "auth"
247 ]
248 }
249 },
250 "POST/setting_test/saveAlphanumericDetail": {
251 "method": "POST",
252 "uri": "/setting_test/saveAlphanumericDetail",
253 "action": {
254 "uses": "App\\Http\\Controllers\\SettingTestController@saveAlphanumericDetail",
255 "middleware": [
256 "auth"
257 ]
258 }
259 },
260 "GET/setting_test/deleteNilaiRujukan": {
261 "method": "GET",
262 "uri": "/setting_test/deleteNilaiRujukan",
263 "action": {
264 "uses": "App\\Http\\Controllers\\SettingTestController@deleteNilaiRujukan",
265 "middleware": [
266 "auth"
267 ]
268 }
269 },
270 "POST/setting_test/saveReferensi": {
271 "method": "POST",
272 "uri": "/setting_test/saveReferensi",
273 "action": {
274 "uses": "App\\Http\\Controllers\\SettingTestController@saveReferensi",
275 "middleware": [
276 "auth"
277 ]
278 }
279 },
280 "POST/setting_test/saveNumericUtama": {
281 "method": "POST",
282 "uri": "/setting_test/saveNumericUtama",
283 "action": {
284 "uses": "App\\Http\\Controllers\\SettingTestController@saveNumericUtama",
285 "middleware": [
286 "auth"
287 ]
288 }
289 },
290 "POST/setting_test/saveNumericDetail": {
291 "method": "POST",
292 "uri": "/setting_test/saveNumericDetail",
293 "action": {
294 "uses": "App\\Http\\Controllers\\SettingTestController@saveNumericDetail",
295 "middleware": [
296 "auth"
297 ]
298 }
299 },
300 "GET/setting_test/getListTestForPanel": {
301 "method": "GET",
302 "uri": "/setting_test/getListTestForPanel",
303 "action": {
304 "uses": "App\\Http\\Controllers\\SettingTestController@getListTestForPanel",
305 "middleware": [
306 "auth"
307 ]
308 }
309 },
310 "POST/setting_test/savePanel": {
311 "method": "POST",
312 "uri": "/setting_test/savePanel",
313 "action": {
314 "uses": "App\\Http\\Controllers\\SettingTestController@savePanel",
315 "middleware": [
316 "auth"
317 ]
318 }
319 },
320 "GET/setting_test/deleteTestPanel": {
321 "method": "GET",
322 "uri": "/setting_test/deleteTestPanel",
323 "action": {
324 "uses": "App\\Http\\Controllers\\SettingTestController@deleteTestPanel",
325 "middleware": [
326 "auth"
327 ]
328 }
329 },
330 "GET/setting_test/deleteMemberPaket": {
331 "method": "GET",
332 "uri": "/setting_test/deleteMemberPaket",
333 "action": {
334 "uses": "App\\Http\\Controllers\\SettingTestController@deleteMemberPaket",
335 "middleware": [
336 "auth"
337 ]
338 }
339 },
340 "POST/setting_test/savePaket": {
341 "method": "POST",
342 "uri": "/setting_test/savePaket",
343 "action": {
344 "uses": "App\\Http\\Controllers\\SettingTestController@savePaket",
345 "middleware": [
346 "auth"
347 ]
348 }
349 },
350 "GET/setting_test/getTestAllAndPanel": {
351 "method": "GET",
352 "uri": "/setting_test/getTestAllAndPanel",
353 "action": {
354 "uses": "App\\Http\\Controllers\\SettingTestController@getTestAllAndPanel",
355 "middleware": [
356 "auth"
357 ]
358 }
359 },
360 "GET/setting_test/getComboboxOnFormPaket": {
361 "method": "GET",
362 "uri": "/setting_test/getComboboxOnFormPaket",
363 "action": {
364 "uses": "App\\Http\\Controllers\\SettingTestController@getComboboxOnFormPaket",
365 "middleware": [
366 "auth"
367 ]
368 }
369 },
370 "POST/setting_test/saveFormula": {
371 "method": "POST",
372 "uri": "/setting_test/saveFormula",
373 "action": {
374 "uses": "App\\Http\\Controllers\\SettingTestController@saveFormula",
375 "middleware": [
376 "auth"
377 ]
378 }
379 },
380 "GET/setting_test/getDataFormulaTest": {
381 "method": "GET",
382 "uri": "/setting_test/getDataFormulaTest",
383 "action": {
384 "uses": "App\\Http\\Controllers\\SettingTestController@getDataFormulaTest",
385 "middleware": [
386 "auth"
387 ]
388 }
389 },
390 "POST/setting_test/saveLimitation": {
391 "method": "POST",
392 "uri": "/setting_test/saveLimitation",
393 "action": {
394 "uses": "App\\Http\\Controllers\\SettingTestController@saveLimitation",
395 "middleware": [
396 "auth"
397 ]
398 }
399 },
400 "GET/setting_test/getAllComboRegistrasi": {
401 "method": "GET",
402 "uri": "/setting_test/getAllComboRegistrasi",
403 "action": {
404 "uses": "App\\Http\\Controllers\\SettingTestController@getAllComboRegistrasi",
405 "middleware": [
406 "auth"
407 ]
408 }
409 },
410 "POST/setting_test/saveNewList": {
411 "method": "POST",
412 "uri": "/setting_test/saveNewList",
413 "action": {
414 "uses": "App\\Http\\Controllers\\SettingTestController@saveNewList",
415 "middleware": [
416 "auth"
417 ]
418 }
419 },
420 "GET/setting_test/getCodeTest": {
421 "method": "GET",
422 "uri": "/setting_test/getCodeTest",
423 "action": {
424 "uses": "App\\Http\\Controllers\\SettingTestController@getCodeTest",
425 "middleware": [
426 "auth"
427 ]
428 }
429 },
430 "GET/setting_test/getInstrumentList": {
431 "method": "GET",
432 "uri": "/setting_test/getInstrumentList",
433 "action": {
434 "uses": "App\\Http\\Controllers\\SettingTestController@getInstrumentList",
435 "middleware": [
436 "auth"
437 ]
438 }
439 },
440 "GET/setting_test/getInstrumentTestList": {
441 "method": "GET",
442 "uri": "/setting_test/getInstrumentTestList",
443 "action": {
444 "uses": "App\\Http\\Controllers\\SettingTestController@getInstrumentTestList",
445 "middleware": [
446 "auth"
447 ]
448 }
449 },
450 "POST/setting_test/postInstrumentTestList": {
451 "method": "POST",
452 "uri": "/setting_test/postInstrumentTestList",
453 "action": {
454 "uses": "App\\Http\\Controllers\\SettingTestController@postInstrumentTestList",
455 "middleware": [
456 "auth"
457 ]
458 }
459 },
460 "POST/setting_test/activeInactiveInstrumentTest": {
461 "method": "POST",
462 "uri": "/setting_test/activeInactiveInstrumentTest",
463 "action": {
464 "uses": "App\\Http\\Controllers\\SettingTestController@activeInactiveInstrumentTest",
465 "middleware": [
466 "auth"
467 ]
468 }
469 },
470 "POST/setting_test/activeInactiveMappingInstrumentTest": {
471 "method": "POST",
472 "uri": "/setting_test/activeInactiveMappingInstrumentTest",
473 "action": {
474 "uses": "App\\Http\\Controllers\\SettingTestController@activeInactiveMappingInstrumentTest",
475 "middleware": [
476 "auth"
477 ]
478 }
479 },
480 "GET/setting_test/getMappingInstrumentTest": {
481 "method": "GET",
482 "uri": "/setting_test/getMappingInstrumentTest",
483 "action": {
484 "uses": "App\\Http\\Controllers\\SettingTestController@getMappingInstrumentTest",
485 "middleware": [
486 "auth"
487 ]
488 }
489 },
490 "POST/setting_test/postMappingInstrumentTest": {
491 "method": "POST",
492 "uri": "/setting_test/postMappingInstrumentTest",
493 "action": {
494 "uses": "App\\Http\\Controllers\\SettingTestController@postMappingInstrumentTest",
495 "middleware": [
496 "auth"
497 ]
498 }
499 },
500 "GET/setting_test/getTestByInstrument": {
501 "method": "GET",
502 "uri": "/setting_test/getTestByInstrument",
503 "action": {
504 "uses": "App\\Http\\Controllers\\SettingTestController@getTestByInstrument",
505 "middleware": [
506 "auth"
507 ]
508 }
509 },
510 "GET/setting_test/list/subtest": {
511 "method": "GET",
512 "uri": "/setting_test/list/subtest",
513 "action": {
514 "uses": "App\\Http\\Controllers\\SettingTestController@getSubTest",
515 "middleware": [
516 "auth"
517 ]
518 }
519 },
520 "GET/registrasi/getRuangan": {
521 "method": "GET",
522 "uri": "/registrasi/getRuangan",
523 "action": {
524 "uses": "App\\Http\\Controllers\\RegistrasiController@getRuangan",
525 "middleware": [
526 "auth"
527 ]
528 }
529 },
530 "POST/registrasi/saveRegistrasi": {
531 "method": "POST",
532 "uri": "/registrasi/saveRegistrasi",
533 "action": {
534 "uses": "App\\Http\\Controllers\\RegistrasiController@saveRegistrasi",
535 "middleware": [
536 "auth"
537 ]
538 }
539 },
540 "GET/registrasi/getTestForOrder": {
541 "method": "GET",
542 "uri": "/registrasi/getTestForOrder",
543 "action": {
544 "uses": "App\\Http\\Controllers\\RegistrasiController@getTestForOrder",
545 "middleware": [
546 "auth"
547 ]
548 }
549 },
550 "GET/registrasi/getListPaymentMethod": {
551 "method": "GET",
552 "uri": "/registrasi/getListPaymentMethod",
553 "action": {
554 "uses": "App\\Http\\Controllers\\RegistrasiController@getListPaymentMethod",
555 "middleware": [
556 "auth"
557 ]
558 }
559 },
560 "GET/registrasi/getPasienByRm": {
561 "method": "GET",
562 "uri": "/registrasi/getPasienByRm",
563 "action": {
564 "uses": "App\\Http\\Controllers\\RegistrasiController@getPasienByRm",
565 "middleware": [
566 "auth"
567 ]
568 }
569 },
570 "POST/registrasi/bayarRegistrasi": {
571 "method": "POST",
572 "uri": "/registrasi/bayarRegistrasi",
573 "action": {
574 "uses": "App\\Http\\Controllers\\RegistrasiController@bayarRegistrasi",
575 "middleware": [
576 "auth"
577 ]
578 }
579 },
580 "GET/registrasi/getGenerateMrn": {
581 "method": "GET",
582 "uri": "/registrasi/getGenerateMrn",
583 "action": {
584 "uses": "App\\Http\\Controllers\\RegistrasiController@mr_num",
585 "middleware": [
586 "auth"
587 ]
588 }
589 },
590 "GET/registrasi/getSearchDokterPerujuk": {
591 "method": "GET",
592 "uri": "/registrasi/getSearchDokterPerujuk",
593 "action": {
594 "uses": "App\\Http\\Controllers\\RegistrasiController@getSearchDokterPerujuk",
595 "middleware": [
596 "auth"
597 ]
598 }
599 },
600 "GET/registrasi/searchInstansiPerujuk": {
601 "method": "GET",
602 "uri": "/registrasi/searchInstansiPerujuk",
603 "action": {
604 "uses": "App\\Http\\Controllers\\RegistrasiController@searchInstansiPerujuk",
605 "middleware": [
606 "auth"
607 ]
608 }
609 },
610 "GET/registrasi/kelas/by/ward": {
611 "method": "GET",
612 "uri": "/registrasi/kelas/by/ward",
613 "action": {
614 "uses": "App\\Http\\Controllers\\RegistrasiController@getKelasByWard",
615 "middleware": [
616 "auth"
617 ]
618 }
619 },
620 "GET/registrasi/global/search": {
621 "method": "GET",
622 "uri": "/registrasi/global/search",
623 "action": {
624 "uses": "App\\Http\\Controllers\\RegistrasiController@getGlobalSearch",
625 "middleware": [
626 "auth"
627 ]
628 }
629 },
630 "GET/worklist/getPatientList": {
631 "method": "GET",
632 "uri": "/worklist/getPatientList",
633 "action": {
634 "uses": "App\\Http\\Controllers\\WorklistController@getPatientList",
635 "middleware": [
636 "auth"
637 ]
638 }
639 },
640 "GET/worklist/getDetailPatient/{id}": {
641 "method": "GET",
642 "uri": "/worklist/getDetailPatient/{id}",
643 "action": {
644 "uses": "App\\Http\\Controllers\\WorklistController@getDetailPatient",
645 "middleware": [
646 "auth"
647 ]
648 }
649 },
650 "GET/worklist/getAlphaNumericName/{id}": {
651 "method": "GET",
652 "uri": "/worklist/getAlphaNumericName/{id}",
653 "action": {
654 "uses": "App\\Http\\Controllers\\WorklistController@getAlphaNumericName",
655 "middleware": [
656 "auth"
657 ]
658 }
659 },
660 "GET/worklist/getListAlphaNumericRef/{id}": {
661 "method": "GET",
662 "uri": "/worklist/getListAlphaNumericRef/{id}",
663 "action": {
664 "uses": "App\\Http\\Controllers\\WorklistController@getListAlphaNumericRef",
665 "middleware": [
666 "auth"
667 ]
668 }
669 },
670 "GET/worklist/getKomentarByUidRegistration/{id}": {
671 "method": "GET",
672 "uri": "/worklist/getKomentarByUidRegistration/{id}",
673 "action": {
674 "uses": "App\\Http\\Controllers\\WorklistController@getKomentarByUidRegistration",
675 "middleware": [
676 "auth"
677 ]
678 }
679 },
680 "POST/worklist/simpanKomentar": {
681 "method": "POST",
682 "uri": "/worklist/simpanKomentar",
683 "action": {
684 "uses": "App\\Http\\Controllers\\WorklistController@simpanKomentar",
685 "middleware": [
686 "auth"
687 ]
688 }
689 },
690 "POST/worklist/verifikasiHasil": {
691 "method": "POST",
692 "uri": "/worklist/verifikasiHasil",
693 "action": {
694 "uses": "App\\Http\\Controllers\\WorklistController@verifikasiHasil",
695 "middleware": [
696 "auth"
697 ]
698 }
699 },
700 "GET/worklist/getKomentarByUidExam/{id}": {
701 "method": "GET",
702 "uri": "/worklist/getKomentarByUidExam/{id}",
703 "action": {
704 "uses": "App\\Http\\Controllers\\WorklistController@getKomentarByUidExam",
705 "middleware": [
706 "auth"
707 ]
708 }
709 },
710 "POST/worklist/approveHasil": {
711 "method": "POST",
712 "uri": "/worklist/approveHasil",
713 "action": {
714 "uses": "App\\Http\\Controllers\\WorklistController@approveHasil",
715 "middleware": [
716 "auth"
717 ]
718 }
719 },
720 "GET/worklist/getHistoryTest": {
721 "method": "GET",
722 "uri": "/worklist/getHistoryTest",
723 "action": {
724 "uses": "App\\Http\\Controllers\\WorklistController@getHistoryTest",
725 "middleware": [
726 "auth"
727 ]
728 }
729 },
730 "GET/worklist/getDetailHasilInstrumentPatient/{id}": {
731 "method": "GET",
732 "uri": "/worklist/getDetailHasilInstrumentPatient/{id}",
733 "action": {
734 "uses": "App\\Http\\Controllers\\WorklistController@getDetailHasilInstrumentPatient",
735 "middleware": [
736 "auth"
737 ]
738 }
739 },
740 "POST/worklist/verifikasiHasilByInstrument": {
741 "method": "POST",
742 "uri": "/worklist/verifikasiHasilByInstrument",
743 "action": {
744 "uses": "App\\Http\\Controllers\\WorklistController@verifikasiHasilByInstrument",
745 "middleware": [
746 "auth"
747 ]
748 }
749 },
750 "GET/worklist/getHistoryTestFromHasilIntrument": {
751 "method": "GET",
752 "uri": "/worklist/getHistoryTestFromHasilIntrument",
753 "action": {
754 "uses": "App\\Http\\Controllers\\WorklistController@getHistoryTestFromHasilIntrument",
755 "middleware": [
756 "auth"
757 ]
758 }
759 },
760 "GET/worklist/getChart": {
761 "method": "GET",
762 "uri": "/worklist/getChart",
763 "action": {
764 "uses": "App\\Http\\Controllers\\WorklistController@getChart",
765 "middleware": [
766 "auth"
767 ]
768 }
769 },
770 "GET/worklist/getTestHistory": {
771 "method": "GET",
772 "uri": "/worklist/getTestHistory",
773 "action": {
774 "uses": "App\\Http\\Controllers\\WorklistController@getTestHistory",
775 "middleware": [
776 "auth"
777 ]
778 }
779 },
780 "GET/worklist/getPatientListCari": {
781 "method": "GET",
782 "uri": "/worklist/getPatientListCari",
783 "action": {
784 "uses": "App\\Http\\Controllers\\WorklistController@getPatientListCari",
785 "middleware": [
786 "auth"
787 ]
788 }
789 },
790 "GET/worklist/CetakHasilLab/{id}": {
791 "method": "GET",
792 "uri": "/worklist/CetakHasilLab/{id}",
793 "action": {
794 "uses": "App\\Http\\Controllers\\WorklistController@CetakHasilLab",
795 "middleware": [
796 "auth"
797 ]
798 }
799 },
800 "POST/worklist/counter/{id}": {
801 "method": "POST",
802 "uri": "/worklist/counter/{id}",
803 "action": {
804 "uses": "App\\Http\\Controllers\\WorklistController@pushCounter",
805 "middleware": [
806 "auth"
807 ]
808 }
809 },
810 "POST/setting_speciment/saveSpeciment": {
811 "method": "POST",
812 "uri": "/setting_speciment/saveSpeciment",
813 "action": {
814 "uses": "App\\Http\\Controllers\\SettingSpecimentController@saveSpeciment",
815 "middleware": [
816 "auth"
817 ]
818 }
819 },
820 "GET/setting_speciment/getSpecimentList": {
821 "method": "GET",
822 "uri": "/setting_speciment/getSpecimentList",
823 "action": {
824 "uses": "App\\Http\\Controllers\\SettingSpecimentController@getSpecimentList",
825 "middleware": [
826 "auth"
827 ]
828 }
829 },
830 "POST/setting_speciment/activeInactiveSpeciment": {
831 "method": "POST",
832 "uri": "/setting_speciment/activeInactiveSpeciment",
833 "action": {
834 "uses": "App\\Http\\Controllers\\SettingSpecimentController@activeInactiveSpeciment",
835 "middleware": [
836 "auth"
837 ]
838 }
839 },
840 "POST/setting_price/price/add": {
841 "method": "POST",
842 "uri": "/setting_price/price/add",
843 "action": {
844 "uses": "App\\Http\\Controllers\\SettingPriceController@savePriceTest",
845 "middleware": [
846 "auth"
847 ]
848 }
849 },
850 "PATCH/setting_price/price/{id}": {
851 "method": "PATCH",
852 "uri": "/setting_price/price/{id}",
853 "action": {
854 "uses": "App\\Http\\Controllers\\SettingPriceController@updateEnabledPrice",
855 "middleware": [
856 "auth"
857 ]
858 }
859 },
860 "GET/setting_price/type/test": {
861 "method": "GET",
862 "uri": "/setting_price/type/test",
863 "action": {
864 "uses": "App\\Http\\Controllers\\SettingPriceController@getLTestType",
865 "middleware": [
866 "auth"
867 ]
868 }
869 },
870 "GET/setting_price/getPriceList": {
871 "method": "GET",
872 "uri": "/setting_price/getPriceList",
873 "action": {
874 "uses": "App\\Http\\Controllers\\SettingPriceController@getPriceList",
875 "middleware": [
876 "auth"
877 ]
878 }
879 },
880 "GET/setting_price/kelas/list": {
881 "method": "GET",
882 "uri": "/setting_price/kelas/list",
883 "action": {
884 "uses": "App\\Http\\Controllers\\SettingPriceController@getKelas",
885 "middleware": [
886 "auth"
887 ]
888 }
889 },
890 "GET/setting_price/jenisPasien/list": {
891 "method": "GET",
892 "uri": "/setting_price/jenisPasien/list",
893 "action": {
894 "uses": "App\\Http\\Controllers\\SettingPriceController@getJenisPasien",
895 "middleware": [
896 "auth"
897 ]
898 }
899 },
900 "GET/setting_price/guarantor/list": {
901 "method": "GET",
902 "uri": "/setting_price/guarantor/list",
903 "action": {
904 "uses": "App\\Http\\Controllers\\SettingPriceController@getGuarantor",
905 "middleware": [
906 "auth"
907 ]
908 }
909 },
910 "GET/setting_price/guarantor/by/type": {
911 "method": "GET",
912 "uri": "/setting_price/guarantor/by/type",
913 "action": {
914 "uses": "App\\Http\\Controllers\\SettingPriceController@getGuarantorByType",
915 "middleware": [
916 "auth"
917 ]
918 }
919 },
920 "GET/setting_price/list": {
921 "method": "GET",
922 "uri": "/setting_price/list",
923 "action": {
924 "uses": "App\\Http\\Controllers\\SettingPriceController@getTarifTest",
925 "middleware": [
926 "auth"
927 ]
928 }
929 },
930 "GET/setting_price/test/list": {
931 "method": "GET",
932 "uri": "/setting_price/test/list",
933 "action": {
934 "uses": "App\\Http\\Controllers\\SettingPriceController@getListPriceTest",
935 "middleware": [
936 "auth"
937 ]
938 }
939 },
940 "GET/setting_price/copy/list": {
941 "method": "GET",
942 "uri": "/setting_price/copy/list",
943 "action": {
944 "uses": "App\\Http\\Controllers\\SettingPriceController@copyPriceList",
945 "middleware": [
946 "auth"
947 ]
948 }
949 },
950 "POST/setting_role/add": {
951 "method": "POST",
952 "uri": "/setting_role/add",
953 "action": {
954 "uses": "App\\Http\\Controllers\\SettingRoleController@saveRoles",
955 "middleware": [
956 "auth"
957 ]
958 }
959 },
960 "PATCH/setting_role/{id}": {
961 "method": "PATCH",
962 "uri": "/setting_role/{id}",
963 "action": {
964 "uses": "App\\Http\\Controllers\\SettingRoleController@updateRoles",
965 "middleware": [
966 "auth"
967 ]
968 }
969 },
970 "GET/setting_role/list": {
971 "method": "GET",
972 "uri": "/setting_role/list",
973 "action": {
974 "uses": "App\\Http\\Controllers\\SettingRoleController@getRoles",
975 "middleware": [
976 "auth"
977 ]
978 }
979 },
980 "POST/setting_payment_methods/add": {
981 "method": "POST",
982 "uri": "/setting_payment_methods/add",
983 "action": {
984 "uses": "App\\Http\\Controllers\\SettingPaymentMethodsController@savePaymentMethods",
985 "middleware": [
986 "auth"
987 ]
988 }
989 },
990 "PATCH/setting_payment_methods/{id}": {
991 "method": "PATCH",
992 "uri": "/setting_payment_methods/{id}",
993 "action": {
994 "uses": "App\\Http\\Controllers\\SettingPaymentMethodsController@updatePaymentMethods",
995 "middleware": [
996 "auth"
997 ]
998 }
999 },
1000 "GET/setting_payment_methods/list": {
1001 "method": "GET",
1002 "uri": "/setting_payment_methods/list",
1003 "action": {
1004 "uses": "App\\Http\\Controllers\\SettingPaymentMethodsController@getPaymentMethods",
1005 "middleware": [
1006 "auth"
1007 ]
1008 }
1009 },
1010 "POST/setting_jenis_pasien/add": {
1011 "method": "POST",
1012 "uri": "/setting_jenis_pasien/add",
1013 "action": {
1014 "uses": "App\\Http\\Controllers\\SettingJenisPasienController@saveData",
1015 "middleware": [
1016 "auth"
1017 ]
1018 }
1019 },
1020 "PATCH/setting_jenis_pasien/{id}": {
1021 "method": "PATCH",
1022 "uri": "/setting_jenis_pasien/{id}",
1023 "action": {
1024 "uses": "App\\Http\\Controllers\\SettingJenisPasienController@updateData",
1025 "middleware": [
1026 "auth"
1027 ]
1028 }
1029 },
1030 "GET/setting_jenis_pasien/list": {
1031 "method": "GET",
1032 "uri": "/setting_jenis_pasien/list",
1033 "action": {
1034 "uses": "App\\Http\\Controllers\\SettingJenisPasienController@getData",
1035 "middleware": [
1036 "auth"
1037 ]
1038 }
1039 },
1040 "POST/setting_kelas/add": {
1041 "method": "POST",
1042 "uri": "/setting_kelas/add",
1043 "action": {
1044 "uses": "App\\Http\\Controllers\\SettingKelasController@saveData",
1045 "middleware": [
1046 "auth"
1047 ]
1048 }
1049 },
1050 "PATCH/setting_kelas/{id}": {
1051 "method": "PATCH",
1052 "uri": "/setting_kelas/{id}",
1053 "action": {
1054 "uses": "App\\Http\\Controllers\\SettingKelasController@updateData",
1055 "middleware": [
1056 "auth"
1057 ]
1058 }
1059 },
1060 "GET/setting_kelas/list": {
1061 "method": "GET",
1062 "uri": "/setting_kelas/list",
1063 "action": {
1064 "uses": "App\\Http\\Controllers\\SettingKelasController@getData",
1065 "middleware": [
1066 "auth"
1067 ]
1068 }
1069 },
1070 "POST/setting_instalasi/add": {
1071 "method": "POST",
1072 "uri": "/setting_instalasi/add",
1073 "action": {
1074 "uses": "App\\Http\\Controllers\\SettingInstalasiController@saveData",
1075 "middleware": [
1076 "auth"
1077 ]
1078 }
1079 },
1080 "PATCH/setting_instalasi/{id}": {
1081 "method": "PATCH",
1082 "uri": "/setting_instalasi/{id}",
1083 "action": {
1084 "uses": "App\\Http\\Controllers\\SettingInstalasiController@updateData",
1085 "middleware": [
1086 "auth"
1087 ]
1088 }
1089 },
1090 "GET/setting_instalasi/list": {
1091 "method": "GET",
1092 "uri": "/setting_instalasi/list",
1093 "action": {
1094 "uses": "App\\Http\\Controllers\\SettingInstalasiController@getData",
1095 "middleware": [
1096 "auth"
1097 ]
1098 }
1099 },
1100 "POST/setting_ruangan/add": {
1101 "method": "POST",
1102 "uri": "/setting_ruangan/add",
1103 "action": {
1104 "uses": "App\\Http\\Controllers\\SettingRuanganController@saveData",
1105 "middleware": [
1106 "auth"
1107 ]
1108 }
1109 },
1110 "PATCH/setting_ruangan/{id}": {
1111 "method": "PATCH",
1112 "uri": "/setting_ruangan/{id}",
1113 "action": {
1114 "uses": "App\\Http\\Controllers\\SettingRuanganController@updateData",
1115 "middleware": [
1116 "auth"
1117 ]
1118 }
1119 },
1120 "GET/setting_ruangan/list": {
1121 "method": "GET",
1122 "uri": "/setting_ruangan/list",
1123 "action": {
1124 "uses": "App\\Http\\Controllers\\SettingRuanganController@getData",
1125 "middleware": [
1126 "auth"
1127 ]
1128 }
1129 },
1130 "GET/setting_ruangan/list/kelas": {
1131 "method": "GET",
1132 "uri": "/setting_ruangan/list/kelas",
1133 "action": {
1134 "uses": "App\\Http\\Controllers\\SettingRuanganController@getClass",
1135 "middleware": [
1136 "auth"
1137 ]
1138 }
1139 },
1140 "POST/setting_unit/saveUnit": {
1141 "method": "POST",
1142 "uri": "/setting_unit/saveUnit",
1143 "action": {
1144 "uses": "App\\Http\\Controllers\\SettingUnitController@saveUnit",
1145 "middleware": [
1146 "auth"
1147 ]
1148 }
1149 },
1150 "GET/setting_unit/getUnitList": {
1151 "method": "GET",
1152 "uri": "/setting_unit/getUnitList",
1153 "action": {
1154 "uses": "App\\Http\\Controllers\\SettingUnitController@getUnitList",
1155 "middleware": [
1156 "auth"
1157 ]
1158 }
1159 },
1160 "POST/setting_unit/activeInactiveUnit": {
1161 "method": "POST",
1162 "uri": "/setting_unit/activeInactiveUnit",
1163 "action": {
1164 "uses": "App\\Http\\Controllers\\SettingUnitController@activeInactiveUnit",
1165 "middleware": [
1166 "auth"
1167 ]
1168 }
1169 },
1170 "POST/setting_instrument/saveMInstrument": {
1171 "method": "POST",
1172 "uri": "/setting_instrument/saveMInstrument",
1173 "action": {
1174 "uses": "App\\Http\\Controllers\\SettingInstrumentController@saveMInstrument",
1175 "middleware": [
1176 "auth"
1177 ]
1178 }
1179 },
1180 "GET/setting_instrument/getMInstrumentList": {
1181 "method": "GET",
1182 "uri": "/setting_instrument/getMInstrumentList",
1183 "action": {
1184 "uses": "App\\Http\\Controllers\\SettingInstrumentController@getMInstrumentList",
1185 "middleware": [
1186 "auth"
1187 ]
1188 }
1189 },
1190 "POST/setting_instrument/activeInactiveMInstrument": {
1191 "method": "POST",
1192 "uri": "/setting_instrument/activeInactiveMInstrument",
1193 "action": {
1194 "uses": "App\\Http\\Controllers\\SettingInstrumentController@activeInactiveMInstrument",
1195 "middleware": [
1196 "auth"
1197 ]
1198 }
1199 },
1200 "GET/blood_bank/getGolDarah": {
1201 "method": "GET",
1202 "uri": "/blood_bank/getGolDarah",
1203 "action": {
1204 "uses": "App\\Http\\Controllers\\BloodBankController@getBloodType",
1205 "middleware": [
1206 "auth"
1207 ]
1208 }
1209 },
1210 "GET/blood_bank/getKomponenDarah": {
1211 "method": "GET",
1212 "uri": "/blood_bank/getKomponenDarah",
1213 "action": {
1214 "uses": "App\\Http\\Controllers\\BloodBankController@getBloodComponent",
1215 "middleware": [
1216 "auth"
1217 ]
1218 }
1219 },
1220 "GET/blood_bank/getInstalasi": {
1221 "method": "GET",
1222 "uri": "/blood_bank/getInstalasi",
1223 "action": {
1224 "uses": "App\\Http\\Controllers\\BloodBankController@getInstallation",
1225 "middleware": [
1226 "auth"
1227 ]
1228 }
1229 },
1230 "GET/blood_bank/getRuangan/{id}": {
1231 "method": "GET",
1232 "uri": "/blood_bank/getRuangan/{id}",
1233 "action": {
1234 "uses": "App\\Http\\Controllers\\BloodBankController@getWardByInstallation",
1235 "middleware": [
1236 "auth"
1237 ]
1238 }
1239 },
1240 "GET/blood_bank/getListOrderPasien": {
1241 "method": "GET",
1242 "uri": "/blood_bank/getListOrderPasien",
1243 "action": {
1244 "uses": "App\\Http\\Controllers\\BloodBankController@getListOrderPatient",
1245 "middleware": [
1246 "auth"
1247 ]
1248 }
1249 },
1250 "GET/blood_bank/getPasienByMrn": {
1251 "method": "GET",
1252 "uri": "/blood_bank/getPasienByMrn",
1253 "action": {
1254 "uses": "App\\Http\\Controllers\\BloodBankController@getPatientByRm",
1255 "middleware": [
1256 "auth"
1257 ]
1258 }
1259 },
1260 "GET/blood_bank/getBloodBag": {
1261 "method": "GET",
1262 "uri": "/blood_bank/getBloodBag",
1263 "action": {
1264 "uses": "App\\Http\\Controllers\\BloodBankController@getbyBag",
1265 "middleware": [
1266 "auth"
1267 ]
1268 }
1269 },
1270 "GET/blood_bank/getStockByBlood": {
1271 "method": "GET",
1272 "uri": "/blood_bank/getStockByBlood",
1273 "action": {
1274 "uses": "App\\Http\\Controllers\\BloodBankController@getStockByBTBC",
1275 "middleware": [
1276 "auth"
1277 ]
1278 }
1279 },
1280 "GET/blood_bank/getListStock": {
1281 "method": "GET",
1282 "uri": "/blood_bank/getListStock",
1283 "action": {
1284 "uses": "App\\Http\\Controllers\\BloodBankController@getStockBlood",
1285 "middleware": [
1286 "auth"
1287 ]
1288 }
1289 },
1290 "POST/blood_bank/savePasienOrder": {
1291 "method": "POST",
1292 "uri": "/blood_bank/savePasienOrder",
1293 "action": {
1294 "uses": "App\\Http\\Controllers\\BloodBankController@saveBloodPatientOrder",
1295 "middleware": [
1296 "auth"
1297 ]
1298 }
1299 },
1300 "GET/blood_bank/getMInstrumentList": {
1301 "method": "GET",
1302 "uri": "/blood_bank/getMInstrumentList",
1303 "action": {
1304 "uses": "App\\Http\\Controllers\\BloodBankController@getMInstrumentList",
1305 "middleware": [
1306 "auth"
1307 ]
1308 }
1309 },
1310 "POST/blood_bank/activeInactiveMInstrument": {
1311 "method": "POST",
1312 "uri": "/blood_bank/activeInactiveMInstrument",
1313 "action": {
1314 "uses": "App\\Http\\Controllers\\BloodBankController@activeInactiveMInstrument",
1315 "middleware": [
1316 "auth"
1317 ]
1318 }
1319 },
1320 "GET/setting_user/getUsers": {
1321 "method": "GET",
1322 "uri": "/setting_user/getUsers",
1323 "action": {
1324 "uses": "App\\Http\\Controllers\\UserController@getUsers",
1325 "middleware": [
1326 "auth"
1327 ]
1328 }
1329 },
1330 "GET/setting_user/getComboBoxUser": {
1331 "method": "GET",
1332 "uri": "/setting_user/getComboBoxUser",
1333 "action": {
1334 "uses": "App\\Http\\Controllers\\UserController@getComboBoxUser",
1335 "middleware": [
1336 "auth"
1337 ]
1338 }
1339 },
1340 "POST/setting_user/saveUser": {
1341 "method": "POST",
1342 "uri": "/setting_user/saveUser",
1343 "action": {
1344 "uses": "App\\Http\\Controllers\\UserController@saveUser",
1345 "middleware": [
1346 "auth"
1347 ]
1348 }
1349 },
1350 "POST/setting_user/activeInactiveUser": {
1351 "method": "POST",
1352 "uri": "/setting_user/activeInactiveUser",
1353 "action": {
1354 "uses": "App\\Http\\Controllers\\UserController@activeInactiveUser",
1355 "middleware": [
1356 "auth"
1357 ]
1358 }
1359 },
1360 "GET/setting_user/getUserAuthorization": {
1361 "method": "GET",
1362 "uri": "/setting_user/getUserAuthorization",
1363 "action": {
1364 "uses": "App\\Http\\Controllers\\UserController@getUserAuthorization",
1365 "middleware": [
1366 "auth"
1367 ]
1368 }
1369 },
1370 "POST/retriveDataFromClient": {
1371 "method": "POST",
1372 "uri": "/retriveDataFromClient",
1373 "action": {
1374 "uses": "App\\Http\\Controllers\\WorklistController@retriveDataFromClient"
1375 }
1376 },
1377 "POST/standby/data": {
1378 "method": "POST",
1379 "uri": "/standby/data",
1380 "action": {
1381 "uses": "App\\Http\\Controllers\\standByDataController@arrange"
1382 }
1383 },
1384 "POST/standby/test": {
1385 "method": "POST",
1386 "uri": "/standby/test",
1387 "action": {
1388 "uses": "App\\Http\\Controllers\\BloodBankController@test"
1389 }
1390 },
1391 "GET/get/route": {
1392 "method": "GET",
1393 "uri": "/get/route",
1394 "action": [
1395 {}
1396 ]
1397 }
1398 }
1399}