diff options
Diffstat (limited to 'apps/federation/lib')
-rw-r--r-- | apps/federation/lib/DAV/FedAuth.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/federation/lib/DAV/FedAuth.php b/apps/federation/lib/DAV/FedAuth.php index 705ccbdd3bb..ae78ffeded9 100644 --- a/apps/federation/lib/DAV/FedAuth.php +++ b/apps/federation/lib/DAV/FedAuth.php @@ -24,6 +24,8 @@ namespace OCA\Federation\DAV; use OCA\Federation\DbHandler; use Sabre\DAV\Auth\Backend\AbstractBasic; +use Sabre\HTTP\RequestInterface; +use Sabre\HTTP\ResponseInterface; class FedAuth extends AbstractBasic { @@ -57,4 +59,10 @@ class FedAuth extends AbstractBasic { protected function validateUserPass($username, $password) { return $this->db->auth($username, $password); } + + /** + * @inheritdoc + */ + function challenge(RequestInterface $request, ResponseInterface $response) { + } } |