Storage owned by group?

Is it possible to create storage objects that are read/write accessible by all members of a group? Say an inventory of items for members of a guild/clan.

Hello @anteaters,

You can achieve this by creating a custom RPC and setting the system user as the owner of the object, the key as the group id and the read permissions as owner only or public. Within the custom RPC you can check for group membership before allowing reads and/or writes, depending on what access rules you’re planning on implementing.

Best

I see, thank you for the quick response. I would have preferred to control access via the owner and keep using the key as the primary key of the contained object. But if that is the only solution it has to suffice. Time to delve into the server side scripting, then.