diff options
author | Christoph Wurst <christoph@owncloud.com> | 2016-06-01 10:42:38 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@owncloud.com> | 2016-06-01 10:42:38 +0200 |
commit | da03a85c3c60adbcdd4f85d041263d4d5cee5ca5 (patch) | |
tree | a7736fae6ce4a3346795d89cc3a090731b6f8bbe /apps/dav/appinfo/v1 | |
parent | 0f2017c7da6332f66f05e93dd34ea1bf1c134148 (diff) | |
download | nextcloud-server-da03a85c3c60adbcdd4f85d041263d4d5cee5ca5.tar.gz nextcloud-server-da03a85c3c60adbcdd4f85d041263d4d5cee5ca5.zip |
block DAV if 2FA challenge needs to be solved first
Diffstat (limited to 'apps/dav/appinfo/v1')
-rw-r--r-- | apps/dav/appinfo/v1/caldav.php | 1 | ||||
-rw-r--r-- | apps/dav/appinfo/v1/carddav.php | 1 | ||||
-rw-r--r-- | apps/dav/appinfo/v1/webdav.php | 1 |
3 files changed, 3 insertions, 0 deletions
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(); |