From da03a85c3c60adbcdd4f85d041263d4d5cee5ca5 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Wed, 1 Jun 2016 10:42:38 +0200 Subject: block DAV if 2FA challenge needs to be solved first --- apps/dav/appinfo/v1/caldav.php | 1 + apps/dav/appinfo/v1/carddav.php | 1 + apps/dav/appinfo/v1/webdav.php | 1 + 3 files changed, 3 insertions(+) (limited to 'apps/dav/appinfo/v1') diff --git a/apps/dav/appinfo/v1/caldav.php b/apps/dav/appinfo/v1/caldav.php index d3af7144745..50348a60202 100644 --- a/apps/dav/appinfo/v1/caldav.php +++ b/apps/dav/appinfo/v1/caldav.php @@ -34,6 +34,7 @@ $authBackend = new Auth( \OC::$server->getSession(), \OC::$server->getUserSession(), \OC::$server->getRequest(), + \OC::$server->getTwoFactorAuthManager(), 'principals/' ); $principalBackend = new Principal( diff --git a/apps/dav/appinfo/v1/carddav.php b/apps/dav/appinfo/v1/carddav.php index 7ef510689c2..88582d64ee5 100644 --- a/apps/dav/appinfo/v1/carddav.php +++ b/apps/dav/appinfo/v1/carddav.php @@ -35,6 +35,7 @@ $authBackend = new Auth( \OC::$server->getSession(), \OC::$server->getUserSession(), \OC::$server->getRequest(), + \OC::$server->getTwoFactorAuthManager(), 'principals/' ); $principalBackend = new Principal( diff --git a/apps/dav/appinfo/v1/webdav.php b/apps/dav/appinfo/v1/webdav.php index 275849f618d..3b733c0fbd5 100644 --- a/apps/dav/appinfo/v1/webdav.php +++ b/apps/dav/appinfo/v1/webdav.php @@ -42,6 +42,7 @@ $authBackend = new \OCA\DAV\Connector\Sabre\Auth( \OC::$server->getSession(), \OC::$server->getUserSession(), \OC::$server->getRequest(), + \OC::$server->getTwoFactorAuthManager(), 'principals/' ); $requestUri = \OC::$server->getRequest()->getRequestUri(); -- cgit v1.2.3