diff options
author | Louis Chemineau <louis@chmn.me> | 2025-02-27 13:13:26 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2025-03-03 11:42:42 +0100 |
commit | d7bc7f8aa484c9d07d7f86a58a6a2da16d81c317 (patch) | |
tree | 4752d3e6898c608b1d4a7f8f0e21cf3dee785aa8 | |
parent | 9f78eaaa973e093ac10e52411ebc2df0444ee8ee (diff) | |
download | nextcloud-server-backport/51051/stable29.tar.gz nextcloud-server-backport/51051/stable29.zip |
fix(login): Support subfolder install for ephemeral sessionsbackport/51051/stable29
Signed-off-by: Louis Chemineau <louis@chmn.me>
-rw-r--r-- | lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php b/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php index b215df1523f..82dd829334d 100644 --- a/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php +++ b/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php @@ -10,15 +10,18 @@ namespace OC\Authentication\Login; use OC\Core\Controller\ClientFlowLoginV2Controller; use OCP\ISession; +use OCP\IURLGenerator; class FlowV2EphemeralSessionsCommand extends ALoginCommand { public function __construct( private ISession $session, + private IURLGenerator $urlGenerator, ) { } public function process(LoginData $loginData): LoginResult { - if (str_starts_with($loginData->getRedirectUrl() ?? '', '/login/v2/grant')) { + $loginV2GrantRoute = $this->urlGenerator->linkToRoute('core.ClientFlowLoginV2.grantPage'); + if (str_starts_with($loginData->getRedirectUrl() ?? '', $loginV2GrantRoute)) { $this->session->set(ClientFlowLoginV2Controller::EPHEMERAL_NAME, true); } |