summaryrefslogtreecommitdiffstats
path: root/18.0-rc/fpm/config/apps.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-02-06 12:35:02 +0100
committerGitHub <noreply@github.com>2020-02-06 12:35:02 +0100
commit4bd951c62245544794c833ae5d8a4e0db0adca60 (patch)
treee67c5ac201dbadbc3a48463d117bf9d5b9897723 /18.0-rc/fpm/config/apps.config.php
parent03ec56e7b9cfa7a03d9bc1ed5176ce5a61c932b4 (diff)
parent79c51bc316b881d1050499a9747619a9949305e1 (diff)
Merge pull request #987 from tilosp/bot/update
Add nextcloud 18.0.1RC1
Diffstat (limited to '18.0-rc/fpm/config/apps.config.php')
-rw-r--r--18.0-rc/fpm/config/apps.config.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/18.0-rc/fpm/config/apps.config.php b/18.0-rc/fpm/config/apps.config.php
new file mode 100644
index 00000000..a4bed833
--- /dev/null
+++ b/18.0-rc/fpm/config/apps.config.php
@@ -0,0 +1,15 @@
+<?php
+$CONFIG = array (
+ "apps_paths" => array (
+ 0 => array (
+ "path" => OC::$SERVERROOT."/apps",
+ "url" => "/apps",
+ "writable" => false,
+ ),
+ 1 => array (
+ "path" => OC::$SERVERROOT."/custom_apps",
+ "url" => "/custom_apps",
+ "writable" => true,
+ ),
+ ),
+);