Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php85
1 files changed, 0 insertions, 85 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
deleted file mode 100644
index 78064a3..0000000
--- a/appinfo/routes.php
+++ /dev/null
@@ -1,85 +0,0 @@
-<?php
-/**
- * Nextcloud - nextant
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Maxence Lange <maxence@pontapreta.net>
- * @copyright Maxence Lange 2016
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-return [
- 'routes' => [
- [
- 'name' => 'settings#setSettings',
- 'url' => 'ajax/settings/admin.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'settings#setOptionsFiles',
- 'url' => 'ajax/settings/option_files.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'settings#setOptionsFilesFilters',
- 'url' => 'ajax/settings/option_files_filters.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'settings#setOptionsBookmarks',
- 'url' => 'ajax/settings/option_bookmarks.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'settings#setOptionsStatus',
- 'url' => 'ajax/settings/option_status.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'settings#updateSubOptions',
- 'url' => 'ajax/settings/updateSubOptions.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'search#searchRequest',
- 'url' => 'ajax/search.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'search#suggestRequest',
- 'url' => 'ajax/suggest.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'search#searchOptions',
- 'url' => 'ajax/search_options.php',
- 'verb' => 'POST'
- ],
-
- [
- 'name' => 'search#searchRequestPublic',
- 'url' => 'ajax/search_public.php',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'search#suggestRequestPublic',
- 'url' => 'ajax/suggest_public.php',
- 'verb' => 'POST'
- ]
- ]
-];