server/apps/files_sharing/appinfo/routes.php

35 lines
907 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 15:04:49 +00:00
// OCS API
//TODO: SET: mail notification, waiting for PR #4689 to be accepted
OC_API::register('get',
2013-09-17 13:27:10 +00:00
'/apps/files_sharing/api/v1/shares',
2013-09-17 09:53:06 +00:00
array('\OCA\Files\Share\Api', 'getAllShare'),
'files_sharing');
2013-09-06 08:49:21 +00:00
OC_API::register('post',
2013-09-17 13:27:10 +00:00
'/apps/files_sharing/api/v1/shares',
2013-09-17 09:53:06 +00:00
array('\OCA\Files\Share\Api', 'createShare'),
'files_sharing');
2013-09-06 08:49:21 +00:00
2013-09-17 09:53:06 +00:00
OC_API::register('get',
2013-09-17 13:27:10 +00:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 09:53:06 +00:00
array('\OCA\Files\Share\Api', 'getShare'),
2013-09-17 13:27:10 +00:00
'files_sharing');
2013-09-06 08:49:21 +00:00
2013-09-17 09:53:06 +00:00
OC_API::register('put',
2013-09-17 13:27:10 +00:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 09:53:06 +00:00
array('\OCA\Files\Share\Api', 'updateShare'),
2013-09-17 13:27:10 +00:00
'files_sharing');
2013-09-06 14:00:01 +00:00
2013-09-17 09:53:06 +00:00
OC_API::register('delete',
2013-09-17 13:27:10 +00:00
'/apps/files_sharing/api/v1/shares/{id}',
2013-09-17 09:53:06 +00:00
array('\OCA\Files\Share\Api', 'deleteShare'),
2013-09-17 13:27:10 +00:00
'files_sharing');