nextcloud/apps/files_sharing/appinfo/routes.php

44 lines
1.1 KiB
PHP
Raw Normal View History

<?php
$this->create('core_ajax_public_preview', '/publicpreview.png')->action(
function() {
require_once __DIR__ . '/../ajax/publicpreview.php';
});
2013-09-16 19:04:49 +04:00
// OCS API
//TODO: SET: mail notification, waiting for PR #4689 to be accepted
OC_API::register('get',
2013-09-17 13:53:06 +04:00
'/apps/files_sharing/api/shares',
array('\OCA\Files\Share\Api', 'getAllShare'),
'files_sharing');
2013-09-06 12:49:21 +04:00
OC_API::register('post',
2013-09-17 13:53:06 +04:00
'/apps/files_sharing/api/shares',
array('\OCA\Files\Share\Api', 'createShare'),
'files_sharing');
2013-09-06 12:49:21 +04:00
2013-09-17 13:53:06 +04:00
OC_API::register('get',
'/apps/files_sharing/api/shares/{path}',
array('\OCA\Files\Share\Api', 'getShare'),
2013-09-06 12:49:21 +04:00
'files_sharing',
OC_API::USER_AUTH,
array('path' => ''),
2013-09-17 13:53:06 +04:00
array('path' => '.+')); //allow slashes in parameter path
2013-09-06 12:49:21 +04:00
2013-09-17 13:53:06 +04:00
OC_API::register('put',
'/apps/files_sharing/api/shares/{path}',
array('\OCA\Files\Share\Api', 'updateShare'),
2013-09-06 18:00:01 +04:00
'files_sharing',
OC_API::USER_AUTH,
array('path' => ''),
array('path' => '.+'));
2013-09-17 13:53:06 +04:00
OC_API::register('delete',
'/apps/files_sharing/api/shares/{path}',
array('\OCA\Files\Share\Api', 'deleteShare'),
'files_sharing',
OC_API::USER_AUTH,
2013-09-16 19:04:49 +04:00
array('path' => ''),
array('path' => '.+'));