diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-10 17:31:12 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-10 17:31:12 +0100 |
commit | f58ed7a509da54fcd29e21dc6fc75528822157a4 (patch) | |
tree | 30c24724e99cb28fdcbec878a3a14d6d00d51691 /apps/user_webdavauth | |
parent | b9089fe8d966b48e4c8dc3f06fd365fc506a0199 (diff) | |
download | nextcloud-server-f58ed7a509da54fcd29e21dc6fc75528822157a4.tar.gz nextcloud-server-f58ed7a509da54fcd29e21dc6fc75528822157a4.zip |
no need to implement createUser in web dav auth
Diffstat (limited to 'apps/user_webdavauth')
-rwxr-xr-x | apps/user_webdavauth/user_webdavauth.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 1459781a3b4..dd34e0ad2f1 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -28,12 +28,6 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { $this->webdavauth_url = OC_Config::getValue( "user_webdavauth_url" ); } - public function createUser() { - // Can't create user - OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to create users from web frontend using WebDAV user backend', 3); - return false; - } - public function deleteUser($uid) { // Can't delete user OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to delete users from web frontend using WebDAV user backend', 3); |