From b62dd92c045390fec8cbacdf55920f754484eb9f Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 10 Aug 2021 11:20:35 +0200 Subject: [PATCH 1/2] Route into folders instead of parents in private links --- .../web-app-files/src/views/PrivateLink.vue | 60 +++++++++++-------- 1 file changed, 34 insertions(+), 26 deletions(-) diff --git a/packages/web-app-files/src/views/PrivateLink.vue b/packages/web-app-files/src/views/PrivateLink.vue index 0b33d7d7064..0481810f532 100644 --- a/packages/web-app-files/src/views/PrivateLink.vue +++ b/packages/web-app-files/src/views/PrivateLink.vue @@ -32,8 +32,11 @@ From 29d17e2f8dfa9f982ca3ff8abba4e95b3f28c24e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Wed, 9 Mar 2022 11:26:42 +0100 Subject: [PATCH 2/2] Add changelog items for private link resolving --- changelog/unreleased/bugfix-resolve-private-link | 5 +++++ changelog/unreleased/enhancement-private-link-routing | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 changelog/unreleased/bugfix-resolve-private-link create mode 100644 changelog/unreleased/enhancement-private-link-routing diff --git a/changelog/unreleased/bugfix-resolve-private-link b/changelog/unreleased/bugfix-resolve-private-link new file mode 100644 index 00000000000..354867ca907 --- /dev/null +++ b/changelog/unreleased/bugfix-resolve-private-link @@ -0,0 +1,5 @@ +Bugfix: Resolve private links + +Private links didn't resolve correctly anymore because the internal file path handling was changed in our api client (owncloud-sdk). We've adjusted it accordingly so that private links now resolve correctly again. + +https://github.com/owncloud/web/pull/5654 diff --git a/changelog/unreleased/enhancement-private-link-routing b/changelog/unreleased/enhancement-private-link-routing new file mode 100644 index 00000000000..45c15e4cad4 --- /dev/null +++ b/changelog/unreleased/enhancement-private-link-routing @@ -0,0 +1,6 @@ +Enhancement: Resolve private links into folders instead of parent + +Private links always resolved into the parent folder of the linked file and visually highlighted the file or folder from the link. We've changed this behaviour to directly navigate into the folder in case the linked resource is a folder and only keep the previous behaviour for when the linked resource is a file. + +https://github.com/owncloud/web/issues/5533 +https://github.com/owncloud/web/pull/5654