mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-29 11:24:11 +01:00
0b5fb1bfc7
Also fixed unit tests so they run but some still fail - Added IUserSession mock - Replaced OCP::getUser() with IUserSession usage to make the mock work - Added base class for test cases
21 lines
354 B
PHP
21 lines
354 B
PHP
<?php
|
|
$CONFIG = array (
|
|
'loglevel' => '1',
|
|
'appstoreenabled' => false,
|
|
'apps_paths' =>
|
|
array (
|
|
0 =>
|
|
array (
|
|
'path' => OC::$SERVERROOT.'/apps',
|
|
'url' => '/apps',
|
|
'writable' => false,
|
|
),
|
|
1 =>
|
|
array (
|
|
'path' => OC::$SERVERROOT.'/apps2',
|
|
'url' => '/apps2',
|
|
'writable' => false,
|
|
)
|
|
),
|
|
);
|