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

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-04-15 15:08:22 +0300
committerGitHub <noreply@github.com>2019-04-15 15:08:22 +0300
commitdf89e0de3e050e11287ab371dcbf55ac2ea0df22 (patch)
treef3d3de17f5df8ee029861b5f5f179d745ffb3dad /appinfo
parent4675aaf9921f7476c414356943cbe7f81d54793e (diff)
parente499dd0b4d68912ea2a517bcf97d39c100d85d08 (diff)
Merge pull request #146 from nextcloud/moreinfo
adding more info to the page. This is only the first step
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml1
-rw-r--r--appinfo/routes.php4
2 files changed, 4 insertions, 1 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index ed4e0ea..9359818 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -9,6 +9,7 @@
<licence>agpl</licence>
<author>Bjoern Schiessle</author>
<author>Ivan Sein Santiago</author>
+ <author>Frank Karlitschek</author>
<namespace>ServerInfo</namespace>
<default_enable/>
<category>monitoring</category>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index e1da318..7725e92 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -34,5 +34,7 @@ return [
],
'ocs' => [
['name' => 'api#info', 'url' => '/api/v1/info', 'verb' => 'GET'],
- ]
+ ['name' => 'api#DiskData', 'url' => '/api/v1/diskdata', 'verb' => 'GET'],
+ ['name' => 'api#BasicData', 'url' => '/api/v1/basicdata', 'verb' => 'GET'],
+ ],
];