From b24663db93fa62c129140856d70ca35436e2751f Mon Sep 17 00:00:00 2001 From: ernolf Date: Sat, 28 Feb 2026 20:30:19 +0100 Subject: [PATCH] feat(routing): add files_sharing_raw to rootUrlApps - Registers the files_sharing_raw app as a root-URL app so that its routes are served under /raw/{token} and /rss instead of the default /apps/files_sharing_raw/... prefix. This is required for the files_sharing_raw app to generate correct canonical raw URLs via PublicUrlBuilder. Signed-off-by: ernolf --- lib/private/AppFramework/Routing/RouteParser.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/AppFramework/Routing/RouteParser.php b/lib/private/AppFramework/Routing/RouteParser.php index 1470376bfa233..758951ea35530 100644 --- a/lib/private/AppFramework/Routing/RouteParser.php +++ b/lib/private/AppFramework/Routing/RouteParser.php @@ -18,6 +18,7 @@ class RouteParser { private const rootUrlApps = [ 'cloud_federation_api', 'core', + 'files_sharing_raw', 'files_sharing', 'files', 'globalsiteselector',