summaryrefslogtreecommitdiffstats
path: root/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-29 21:00:12 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-29 21:00:12 +0200
commit1ca33d6b5a509ff0c4113521ab8109bc55bdc442 (patch)
treebdc8fe0d878abdeae38782d671cc16f7c47818f3 /controller
parent650ef3331a92bac717f5501b79c01e2579506499 (diff)
add author names to manifest file
Diffstat (limited to 'controller')
-rw-r--r--controller/appcontroller.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/controller/appcontroller.php b/controller/appcontroller.php
index eea068d24..138668950 100644
--- a/controller/appcontroller.php
+++ b/controller/appcontroller.php
@@ -57,6 +57,11 @@ class AppController extends Controller {
}
}
+ $authors = [];
+ foreach ($config['authors'] as $author) {
+ $authors[] = $author['name'];
+ }
+
return [
"name" => $config['name'],
"description" => $config['description'],
@@ -64,7 +69,7 @@ class AppController extends Controller {
$config['id'] . '.page.index'),
"icons" => $icons,
"developer" => [
- "name" => "ownCloud community",
+ "name" => implode(', ', $authors),
"url" => $config['homepage']
]
];