cozy-files icon indicating copy to clipboard operation
cozy-files copied to clipboard

Provide a way to easily retrieve shared/public files or folder

Open ZeHiro opened this issue 8 years ago • 1 comments

The idea is to have an overview of all this files to be able to disactivate the shared/public files

ZeHiro avatar Oct 25 '16 05:10 ZeHiro

I like this idea ☺

For now, if you're self-hosted, you can get the list of every shared files and folders by querying the database:

cozy-monitor curlcouch _design/file/_view/all | jq -r '.rows[] | .value | select(has("clearance")) | [.path, .name] | join("/")'
cozy-monitor curlcouch _design/folder/_view/all | jq -r '.rows[] | .value | select(has("clearance")) | [.path, .name] | join("/")'

clochix avatar Oct 31 '16 10:10 clochix