summaryrefslogtreecommitdiffstats
path: root/.config/apps.config.php
blob: a4bed8336e2a706a8e87d5f459b116802da8da3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
      ),
  ),
);