Skip to content
Snippets Groups Projects
Commit 6fba4ba8 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

fix the webdavauth app

parent 01b0e9b1
Branches
No related tags found
No related merge requests found
......@@ -2,10 +2,12 @@
<info>
<id>user_webdavauth</id>
<name>WebDAV user backend</name>
<description>Authenticate Users by a WebDAV call</description>
<version>1.0</version>
<description>Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones.</description>
<licence>AGPL</licence>
<author>Frank Karlitschek</author>
<require>4.9</require>
<shipped>true</shipped>
<types>
<authentication/>
</types>
</info>
1.1.0.0
......@@ -68,9 +68,10 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
* we don´t know if a user exists without the password. so we have to return false all the time
*/
public function userExists( $uid ){
return false;
return true;
}
/*
* we don´t know the users so all we can do it return an empty array here
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment