(org: string, user: string | null)
| 8 | // v2: owner partitions instead of a scope stack. Reads fall through |
| 9 | // [user, org] (user = innermost); writes/deletes name an explicit owner. |
| 10 | const partitions = (org: string, user: string | null): OwnerPartitions => ({ |
| 11 | org, |
| 12 | user, |
| 13 | }); |
| 14 | |
| 15 | describe("pluginBlobStore", () => { |
| 16 | it.effect("get returns user (innermost) value when both owners have one", () => |