Merge pull request #11171 from owncloud/fix-route
Match more URL fragments
This commit is contained in:
commit
e94ec409ae
|
@ -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