From b19aad88fb838a7ce02e543a3de2e62e54c69be2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 20 Oct 2016 12:52:24 +0200 Subject: No challenge within federated auth Signed-off-by: Lukas Reschke --- apps/federation/lib/DAV/FedAuth.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/federation/lib') 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) { + } } -- cgit v1.2.3