-
Notifications
You must be signed in to change notification settings - Fork 171
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
[full-ci] Allow 425 status-code in propfinds #8146
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. |
Kudos, SonarCloud Quality Gate passed! |
@@ -99,6 +99,7 @@ export function buildResource(resource): Resource { | |||
webDavPath: resource.name, | |||
type: isFolder ? 'folder' : resource.type, | |||
isFolder, | |||
processing: resource.processing || false, |
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.
!!resource.processing, optional i just prefer to have !!
and be able to search for it
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.
Why? It's a boolean in the response. The owncloud-sdk
only ever sets true
or false
as values.
i have to setup office to test it in person now, one thing i would like to see is a 225 error-code test |
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.
not able to run office hier at the moment, code LGTM
I'll do that in #8069 because we need the same functionality for all other apps as well. |
Description
Splitting out the propfind 425 status code handling from #8069 so that async upload e2e tests get unblocked.
Related Issue
Types of changes
Checklist:
cc @individual-it