-
Notifications
You must be signed in to change notification settings - Fork 159
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
refactor: consistenly use webdav abstraction layer #9728
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
b095b55
to
5dc09e8
Compare
return clientService.owncloudSdk.fileTrash | ||
.clearTrashBin(path) | ||
return clientService.webdav | ||
.clearTrashBin(space, { hasShareJail: unref(hasShareJail), user: store.getters.user }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we pass this in via parameter here or should we set it globally for the clientService?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, good idea! I think we need that anyway in the future when we're removing the SDK. Will do in a follow-up.
packages/web-app-files/src/composables/actions/spaces/useSpaceActionsUploadImage.ts
Show resolved
Hide resolved
5dc09e8
to
c492c11
Compare
c492c11
to
f07f687
Compare
Kudos, SonarCloud Quality Gate passed! |
Description
This makes it easier to remove the SDK in the future.
Related Issue
Types of changes