fix cors options request for routes deeper than one level

This commit is contained in:
Bernhard Posselt 2013-09-13 17:21:42 +02:00
Родитель 346a657bcf
Коммит 7f3a42d949
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -285,7 +285,7 @@ $this->create('news_api_cors', '/api/v1-2/{path}')->method('options')->action(
function($params) {
return App::main('NewsAPI', 'cors', $params, new DIContainer());
}
)->requirements(array('path', '.+'));
)->requirements(array('path' => '.+'));
$this->create('news_api_feeds_get_all', '/api/v1-2/feeds')->get()->action(