Attempt to add basic nextcloud addressbook

This commit is contained in:
Akhil 2023-08-04 01:03:06 +05:30
parent f6ef6d45ff
commit edb1bf29eb
No known key found for this signature in database
GPG key ID: A8AB680DBB7F3D45
2 changed files with 97 additions and 0 deletions

View file

@ -259,6 +259,10 @@ class NextcloudPlugin extends \RainLoop\Plugins\AbstractPlugin
$this->Config()->Get('plugin', 'ignoreSystemAddressbook', true)
);
}
if ('address-book' === $sName) {
include_once __DIR__ . '/NextcloudAddressBook.php';
$mResult = new NextcloudAddressBook();
}
}
}