123456789101112131415161718 |
- <?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',
- ],
- ],
- ];
|