-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Hide download action when file does not provide download permissions #2482
Conversation
/backport to stable30 |
eb9465a
to
b6722ac
Compare
…ions This is not only a possibility for public shares but also for internal shares, the current code only "checked" public shares. This adds the same logic we use in the files app. Probably something to move to `@nextcloud/sharing` but for the moment lets just reuse here. Signed-off-by: Ferdinand Thiessen <[email protected]>
Signed-off-by: Ferdinand Thiessen <[email protected]>
b6722ac
to
b9aac1e
Compare
Signed-off-by: John Molakvoæ (skjnldsv) <[email protected]>
8f0dfcc
to
4263b72
Compare
/compile amend / |
4263b72
to
86f71c2
Compare
Signed-off-by: John Molakvoæ (skjnldsv) <[email protected]>
86f71c2
to
8659a4c
Compare
/backport to stable30 |
1 similar comment
/backport to stable30 |
The backport to # Switch to the target branch and update it
git checkout stable30
git pull origin stable30
# Create the new backport branch
git checkout -b backport/2482/stable30
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick c78627c7 b9aac1e3 9edede18 8659a4cb
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/2482/stable30 Error: Failed to create pull request: Validation Failed: {"resource":"PullRequest","code":"custom","message":"A pull request already exists for nextcloud:backport/2482/stable30."} Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
This is not only a possibility for public shares but also for internal shares, the current code only "checked" public shares.
This adds the same logic we use in the files app. Probably something to move to
@nextcloud/sharing
but for the moment lets just reuse here.