Merge pull request #13660 from owncloud/remove-duplicate-service-definition
Remove duplicated definition of APIController
This commit is contained in:
commit
836b80919f
|
@ -19,7 +19,6 @@ class Application extends App {
|
|||
parent::__construct('files', $urlParams);
|
||||
$container = $this->getContainer();
|
||||
|
||||
|
||||
/**
|
||||
* Controllers
|
||||
*/
|
||||
|
@ -52,16 +51,5 @@ class Application extends App {
|
|||
$homeFolder
|
||||
);
|
||||
});
|
||||
|
||||
/**
|
||||
* Controllers
|
||||
*/
|
||||
$container->registerService('APIController', function (IContainer $c) {
|
||||
return new ApiController(
|
||||
$c->query('AppName'),
|
||||
$c->query('Request'),
|
||||
$c->query('TagService')
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue