|
|
|
|
@ -23,6 +23,7 @@ |
|
|
|
|
|
|
|
|
|
require_once('../lib/base.php'); |
|
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException; |
|
|
|
|
use Symfony\Component\Routing\Exception\MethodNotAllowedException; |
|
|
|
|
|
|
|
|
|
OC::$router->useCollection('ocs'); |
|
|
|
|
OC::$router->loadRoutes(); |
|
|
|
|
@ -31,4 +32,6 @@ try { |
|
|
|
|
OC::$router->match($_SERVER['PATH_INFO']); |
|
|
|
|
} catch (ResourceNotFoundException $e) { |
|
|
|
|
OC_OCS::notFound(); |
|
|
|
|
} catch (MethodNotAllowedException $e) { |
|
|
|
|
OC_Response::setStatus(405); |
|
|
|
|
} |
|
|
|
|
|