feat(lists): inbound shared-list viewer + web-accept for edit links - #30
Merged
Conversation
Parity with the shared-document viewer: a tapped list share link (interlinedlist://lists/shared/:token or the https permalink) now opens a read-only viewer in the app. - SharedListResolution/SharedListInfo + resolveSharedList/sharedListData (GET /api/lists/shared/:token[/data]; anonymous read, token is the capability). - AppDeepLink.sharedList + parser routing for /lists/shared/:token; bare /lists/:id stays deferred (backend-limited — no owner in the URL). - SharedListView renders rows read-only (schema-less; the token grants no schema access), with a headline heuristic over rowData. - Edit-capable links can't be claimed natively (claim is session-only), so SharedListView and SharedDocumentView now show an actionable "Open on interlinedlist.com to accept" button (ILWebURL.sharedList/sharedDocument). - Tests: resolve/data paths + decode; /lists/shared parse (both schemes). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V16mvNBWyYLncSQL8isDNF
This was referenced Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an inbound viewer for shared lists, at parity with the existing shared-document viewer. Tapping a list share link (Universal Link or
interlinedlist://lists/shared/:token) now opens a read-only list in the app. Previously such links did nothing.What's included
SharedListResolution/SharedListInfo.resolveSharedList+sharedListData(GET /api/lists/shared/:token[/data]; anonymous read — the token is the capability).AppDeepLink.sharedList+ parser routing for/lists/shared/:token(custom-scheme and https). A bare/lists/:idpermalink stays deferred (backend-limited — no owner in the URL).SharedListViewrenders rows read-only and schema-less (the token grants no schema access), with a headline heuristic overrowData.SharedListViewandSharedDocumentViewnow show an actionable "Open on interlinedlist.com to accept" button.Testing
/lists/sharedparse (both schemes), bare permalink stillnil.interlinedlist://lists/shared/<token>presentsSharedListViewand correctly renders the backend "not found" state for a fake token, while logged out.Caveats
🤖 Generated with Claude Code
https://claude.ai/code/session_01V16mvNBWyYLncSQL8isDNF