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

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-09-18 22:56:16 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-20 22:22:12 +0300
commitf74f8acc349d9a411978d87940c8434ec7a7e657 (patch)
tree04b440ea500ba64be1f4efcb3fe2d8ab030680d9 /appinfo
parent6703b408601cb983b3b019e55efc7334b1518964 (diff)
Only serve the media types we support
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/application.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/appinfo/application.php b/appinfo/application.php
index d9eb4614..67b1c63c 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -90,7 +90,6 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('ConfigService'),
- $c->query('PreviewService'),
$c->query('Logger')
);
}
@@ -101,7 +100,6 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('ConfigService'),
- $c->query('PreviewService'),
$c->query('Logger')
);
}
@@ -112,7 +110,6 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('ConfigService'),
- $c->query('PreviewService'),
$c->query('Logger')
);
}
@@ -165,6 +162,7 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('OCP\IURLGenerator'),
+ $c->query('ConfigService'),
$c->query('ThumbnailService'),
$c->query('PreviewService'),
$c->query('DownloadService'),
@@ -179,6 +177,7 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('OCP\IURLGenerator'),
+ $c->query('ConfigService'),
$c->query('ThumbnailService'),
$c->query('PreviewService'),
$c->query('DownloadService'),
@@ -193,6 +192,7 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('OCP\IURLGenerator'),
+ $c->query('ConfigService'),
$c->query('ThumbnailService'),
$c->query('PreviewService'),
$c->query('DownloadService'),
@@ -326,6 +326,7 @@ class Application extends App {
$c->query('AppName'),
$c->query('Environment'),
$c->query('ConfigParser'),
+ $c->query('CustomPreviewManager'),
$c->query('Logger')
);
}