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:
authorLukas Reschke <lukas@owncloud.com>2015-09-24 16:35:47 +0300
committerLukas Reschke <lukas@owncloud.com>2015-09-24 16:35:47 +0300
commit6e9f11c70ff6624742b3d390204805cfb7673e9e (patch)
tree5ee42f4cc8b878af33d2d3a6478bbdb4da7b2d42 /appinfo
parente6421754b61a4491329d0458b37311d5d9b73ea0 (diff)
parentf67d0c2d78b4f28347727ca5384948bdb4e88f55 (diff)
Merge pull request #361 from owncloud/secure-mimetypes
Secure mimetypes
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')
);
}