We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93dcf8c + f016e7e commit 0d94a04Copy full SHA for 0d94a04
1 file changed
lib/private/legacy/OC_User.php
@@ -200,7 +200,10 @@ public static function loginWithApache(\OCP\Authentication\IApacheBackend $backe
200
if (empty($password)) {
201
$tokenProvider = \OC::$server->get(IProvider::class);
202
$token = $tokenProvider->getToken($userSession->getSession()->getId());
203
- $token->setScope(['password-unconfirmable' => true]);
+ $token->setScope([
204
+ 'password-unconfirmable' => true,
205
+ 'filesystem' => true,
206
+ ]);
207
$tokenProvider->updateToken($token);
208
}
209
0 commit comments