-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add Share and Unshare APIs to vfs #76
Comments
Sounds nice. One way this could be solved would be to have an internal service that connects to some kind of database and when you "share" a file a row would be inserted with the path and the user id or something like this. This would be server-side VFS only. Then it would be possible to provide a mountpoint with a VFS adapter that uses the same database to enumerate files etc. This approach would require it to work like this:
|
Thanks for your reply and your detailed solution. |
It could probably be solved in a few different ways. I don't really know what solution would fit your use-case the best. But if it's something you need for your custom adapter, then I suppose it could be purely solved in the VFS side of thing for the most part (UI needs support as well). |
Hi.
How do you think about adding
share
andunshare
APIs toVFS
, so that files could be shared with some other users ( for example by adding some metadata to files ).This would allow having our storage APIs implemented in our VFS adapter.
The text was updated successfully, but these errors were encountered: