Merge pull request #13660 from owncloud/remove-duplicate-service-definition

Remove duplicated definition of APIController
remotes/origin/create-share-target-reuse
Thomas Müller 12 years ago
commit 836b80919f
  1. 12
      apps/files/appinfo/application.php

@ -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…
Cancel
Save