Hi, I have a use-case where I need to enable other users to access the filesystem object. Looking at the (server) code, I saw that it's not shared with users that are not the owners and that it's intentional. I also saw that it's consistent, e.g. not responding to file download requests if the user is not the owner.
I'm wondering if this choice is due to some limitation (shared data between threads, etc.) I'm not aware of, or some behavior that is chosen because this is what the users expect. I was thinking of adding filesystem support to non-readonly non-owner users and I see that I need to change this in a few places (join handler, file request handlers, maybe more?). Is it easy as just making sure new users get a filesystem object and matching file download/upload requests, or am I missing something? Cheers, Or.
