diff --git a/index.php b/index.php index 9c7cdd1..01e1b54 100644 --- a/index.php +++ b/index.php @@ -39,6 +39,10 @@ function before($route) dispatch('/:uri_param/*', 'api'); +dispatch_post('/:uri_param/*', 'api'); +dispatch_put('/:uri_param/*', 'api'); +dispatch_delete('/:uri_param/*', 'api'); +dispatch_patch('/:uri_param/*', 'api'); ############################################################################## # run after function