diff options
Diffstat (limited to 'apps/user_webdavauth/user_webdavauth.php')
-rw-r--r-- | apps/user_webdavauth/user_webdavauth.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 86e5b916f3d..1154a7865be 100644 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -21,7 +21,7 @@ * */ -class OC_USER_WEBDAVAUTH extends OC_User_Backend { +class OC_USER_WEBDAVAUTH extends OC_User_Backend implements \OCP\IUserBackend { protected $webdavauth_url; public function __construct() { @@ -86,4 +86,12 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { return $returnArray; } + + /** + * Backend name to be shown in user management + * @return string the name of the backend to be shown + */ + public function getBackendName(){ + return 'WebDAV'; + } } |