Use proper URL generation function (#24576)

Fixes the redirection after login, otherwise `core/files/index` is opened which fails.
This commit is contained in:
Lukas Reschke 2016-05-11 19:39:57 +02:00 committed by Thomas Müller
parent 2a05035339
commit ee0ebd192a
2 changed files with 3 additions and 3 deletions

View File

@ -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'));
}
}

View File

@ -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);