No challenge within federated auth

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
pull/2758/head
Thomas Müller 8 years ago committed by Lukas Reschke
parent 4a823188a9
commit b19aad88fb
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
  1. 8
      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) {
}
}

Loading…
Cancel
Save