Skip to content
Snippets Groups Projects
Commit 5cbe8d63 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

Show conflict warning when user_ldap and user_webdavauth are enabled

parent a871e300
No related branches found
No related tags found
No related merge requests found
......@@ -42,3 +42,6 @@ $entry = array(
);
OCP\Backgroundjob::addRegularTask('OCA\user_ldap\lib\Jobs', 'updateGroups');
if(OCP\App::isEnabled('user_webdavauth')) {
OCP\Util::writeLog('user_ldap', 'user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour', OCP\Util::WARN);
}
......@@ -2,7 +2,9 @@
<info>
<id>user_ldap</id>
<name>LDAP user and group backend</name>
<description>Authenticate Users by LDAP</description>
<description>Authenticate users and groups by LDAP resp. Active Directoy.
This app is not compatible to the WebDAV user backend.</description>
<licence>AGPL</licence>
<author>Dominik Schmidt and Arthur Schiwon</author>
<require>4.9</require>
......
......@@ -7,4 +7,9 @@
#ldap fieldset input {
width: 70%;
display: inline-block;
}
.ldapwarning {
margin-left: 1.4em;
color: #FF3B3B;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment