nextcloud/apps/files_sharing/appinfo/routes.php

35 lines
908 B
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 17:27:10 +04:00
'/apps/files_sharing/api/v1/shares',
array('\OCA\Files\Share\Api', 'getAllShares'),
2013-09-17 13:53:06 +04:00
'files_sharing');
2013-09-06 12:49:21 +04:00
OC_API::register('post',
2013-09-17 17:27:10 +04:00
'/apps/files_sharing/api/v1/shares',
2013-09-17 13:53:06 +04:00
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',
2013-09-17 17:27:10 +04:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 13:53:06 +04:00
array('\OCA\Files\Share\Api', 'getShare'),
2013-09-17 17:27:10 +04:00
'files_sharing');
2013-09-06 12:49:21 +04:00
2013-09-17 13:53:06 +04:00
OC_API::register('put',
2013-09-17 17:27:10 +04:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 13:53:06 +04:00
array('\OCA\Files\Share\Api', 'updateShare'),
2013-09-17 17:27:10 +04:00
'files_sharing');
2013-09-06 18:00:01 +04:00
2013-09-17 13:53:06 +04:00
OC_API::register('delete',
2013-09-17 17:27:10 +04:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 13:53:06 +04:00
array('\OCA\Files\Share\Api', 'deleteShare'),
2013-09-17 17:27:10 +04:00
'files_sharing');