nextcloud_groupfolder_files.../appinfo/routes.php

22 lines
333 B
PHP
Raw Permalink Normal View History

2023-05-17 21:09:36 +02:00
<?php
return [
2024-04-23 20:17:41 +02:00
"routes" => [
[
'name' => 'AdminSettings#index',
'url' => '/adminSettings',
'verb' => 'GET'
],
[
'name' => 'AdminSettings#show',
'url' => '/adminSettings/{key}',
'verb' => 'GET'
],
[
'name' => 'AdminSettings#update',
'url' => '/adminSettings/{key}',
'verb' => 'PATCH'
],
]
2023-05-17 21:09:36 +02:00
];