Match more URL fragments
Fixes https://github.com/owncloud/core/pull/11009#issuecomment-56103341
This commit is contained in:
parent
112e570989
commit
7956765c12
|
@ -10,7 +10,7 @@ namespace OCA\Files\Appinfo;
|
|||
|
||||
$application = new Application();
|
||||
$application->registerRoutes($this, array('routes' => array(
|
||||
array('name' => 'API#getThumbnail', 'url' => '/api/v1/thumbnail/{x}/{y}/{file}', 'verb' => 'GET'),
|
||||
array('name' => 'API#getThumbnail', 'url' => '/api/v1/thumbnail/{x}/{y}/{file}', 'verb' => 'GET', 'requirements' => array('file' => '.+')),
|
||||
)));
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue