diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-07-31 12:10:50 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-03 15:30:11 -0700 |
commit | a7892fb68228578f865e559f9442432ada95cde0 (patch) | |
tree | 333edcb65c37a8f1d9f24bf961ffd55e49981dfa /apps/files_reminders/appinfo | |
parent | 774e3e6d4b9af4a6b329247561f6f85ce354f58d (diff) | |
download | nextcloud-server-a7892fb68228578f865e559f9442432ada95cde0.tar.gz nextcloud-server-a7892fb68228578f865e559f9442432ada95cde0.zip |
feat(files_reminders): add api controller
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_reminders/appinfo')
-rw-r--r-- | apps/files_reminders/appinfo/routes.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/files_reminders/appinfo/routes.php b/apps/files_reminders/appinfo/routes.php new file mode 100644 index 00000000000..f36d6cf6391 --- /dev/null +++ b/apps/files_reminders/appinfo/routes.php @@ -0,0 +1,36 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright 2023 Christopher Ng <chrng8@gmail.com> + * + * @author Christopher Ng <chrng8@gmail.com> + * + * @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/>. + * + */ + +$requirements = [ + 'version' => '1', +]; + +return [ + 'ocs' => [ + ['name' => 'Api#get', 'url' => '/api/v{version}/get', 'verb' => 'GET', 'requirements' => $requirements], + ['name' => 'Api#create', 'url' => '/api/v{version}/create', 'verb' => 'POST', 'requirements' => $requirements], + ], +]; |