routes.php 481 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. $this->create('download', 'download{file}')
  9. ->requirements(array('file' => '.*'))
  10. ->actionInclude('files/download.php');
  11. // Register with the capabilities API
  12. OC_API::register('get', '/cloud/capabilities', array('OCA\Files\Capabilities', 'getCapabilities'), 'files', OC_API::USER_AUTH);