()
| 81 | pluginId: string, |
| 82 | ): PluginBlobStore => { |
| 83 | const readNamespaces = (): readonly string[] => |
| 84 | (partitions.user == null ? [partitions.org] : [partitions.user, partitions.org]).map((p) => |
| 85 | nsFor(p, pluginId), |
| 86 | ); |
| 87 | |
| 88 | const partitionFor = (owner: Owner): Effect.Effect<string, StorageError> => { |
| 89 | if (owner === "org") return Effect.succeed(partitions.org); |
no test coverage detected