diff options
| author | Dhravya Shah <[email protected]> | 2026-01-18 16:54:33 -0800 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2026-01-18 16:54:33 -0800 |
| commit | fbd70806baa01453a60ef72d41d0f7d399a06e43 (patch) | |
| tree | f0fb99591613d8fbaf047a3536d091b13827a6ed /apps/docs/install.md | |
| parent | fix (diff) | |
| download | supermemory-01-16-docs_changes.tar.xz supermemory-01-16-docs_changes.zip | |
fix: install.md01-16-docs_changes
Diffstat (limited to 'apps/docs/install.md')
| -rw-r--r-- | apps/docs/install.md | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/apps/docs/install.md b/apps/docs/install.md index d0d4b1b8..86b26b94 100644 --- a/apps/docs/install.md +++ b/apps/docs/install.md @@ -71,9 +71,17 @@ containerTag: orgId // Org members share memories ``` **BOTH (ask which):** -- Option A: `containerTag: \`\${userId}-\${orgId}\`` -- Option B: `containerTag: orgId, metadata: { userId }` -- Option C: `containerTag: userId, metadata: { orgId }` + +```typescript +// Option A: Unique per user-org combination +containerTag: `${userId}-${orgId}` + +// Option B: Org-scoped with user metadata +containerTag: orgId, metadata: { userId } + +// Option C: User-scoped with org metadata +containerTag: userId, metadata: { orgId } +``` ## STEP 5: INTEGRATION CODE |