Use proper URL generation function (#24576)

Fixes the redirection after login, otherwise `core/files/index` is opened which fails.
remotes/origin/ceph-wait-for-http
Lukas Reschke 9 years ago committed by Thomas Müller
parent 2a05035339
commit ee0ebd192a
  1. 2
      core/Controller/LoginController.php
  2. 4
      tests/core/controller/LoginControllerTest.php

@ -194,7 +194,7 @@ class LoginController extends Controller {
return new RedirectResponse($location);
}
}
return new RedirectResponse($this->urlGenerator->linkTo('files', 'index'));
return new RedirectResponse($this->urlGenerator->linkToRoute('files.view.index'));
}
}

@ -299,8 +299,8 @@ class LoginControllerTest extends TestCase {
->method('createSessionToken')
->with($this->request, $user->getUID(), $password);
$this->urlGenerator->expects($this->once())
->method('linkTo')
->with('files', 'index')
->method('linkToRoute')
->with('files.view.index')
->will($this->returnValue($indexPageUrl));
$expected = new \OCP\AppFramework\Http\RedirectResponse($indexPageUrl);

Loading…
Cancel
Save