mirror of
https://github.com/nextcloud/server.git
synced 2025-02-05 17:10:17 +00:00
afa48a4e0e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
18 lines
323 B
PHP
18 lines
323 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
return [
|
|
'routes' => [
|
|
[
|
|
'name' => 'Preview#getPreview',
|
|
'url' => '/preview',
|
|
'verb' => 'GET',
|
|
],
|
|
],
|
|
];
|