Hi
Is the below scenario do-able with ipfs or ipfs cluster?
- I want to have 3 devices on ipfs (ipfs-cluster) namely A,B,C, which are allowed to send files to get pined
- I want to have 3 other devices on ipfs (ipfs-cluster) namely X,Y,Z, which pin any file sent for pinning from any of the devices in previous step
- When device A,B,C send a file to be pinned, it should only be pinned on itself and on the devices in second step(X,Y,Z) and not on other devices in step 1.
As an example:
“A” marks a file sample.txt to be pinned. the file sample.txt gets pinned on A, X, Y, Z and NOT on B,C. Then device “B” sends file test.txt to be pinned. file test.txt gets pinned on B,X,Y,Z and NOT on A,C. the same for C.
P.S1: Devices X,Y,Z do not need to be able to send any file for pinning(doesn’t matter if they have the ability though)
P.S2: It is ok if when device A sends a file for pinning it does not get pinned on itself.