-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Implement systemtags through webdav #37609
Conversation
https://github.com/nextcloud/server/blob/215aef3cbdc1963be1bb6bca5218ee0a4b7f1665/apps/dav/lib/Connector/Sabre/TagsPlugin.php might provide the info you need already with |
Strange, it does always return empty, but not 404:
Double tested, and also with our c.nc.c. Request is:
|
Looks like that dav property return the user-specific tags (not sure if they are used for anything but favorites atm) instead of system tags. Will look into exposing system tags |
Implemented showing system tags with the |
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.
Psalm found more than 10 potential problems in the proposed changes. Check the Files changed tab for more details.
they are not |
Many thanks! |
f52d757
to
1ea01b2
Compare
can it happen that this webdav request will return an entry with: user-visible=false? |
No, those should be filtered out server side |
4489b3b
to
eb6aba3
Compare
Can we merge this soon, as I need it to have proper tests on Android. |
Signed-off-by: Robin Appelman <robin@icewind.nl>
This comment was marked as resolved.
This comment was marked as resolved.
82bb849
to
c03b784
Compare
There are some similarities to #37961, but also differences (like depth is respected here, and we use the search there, plus get more meta data) P.S.: After a second look: different use case, not competing. |
Hum, phpunit is failing
EDIT pushed a fix |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Exposes system tags under the
{http://nextcloud.org/ns}system-tags
property.