feat: 新增分享路径增量同步接口 share-changes#190
Merged
haierkeys merged 2 commits intohaierkeys:masterfrom Apr 2, 2026
Merged
Conversation
5 tasks
…Vault Combine active and revoked ID lists into a single batch query, then split results in memory using a set lookup. Reduces one database round-trip. Co-Authored-By: Claude Opus 4.6 <[email protected]>
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
新增
GET /api/notes/share-changes接口,支持客户端增量获取分享路径变更,为 Obsidian 插件端的笔记分享状态指示器功能提供服务端支持。ShareChangesRequest/ShareChangesDataDTOListChangedNoteResIDs仓储方法(按updated_at查询变更记录)GetNoteShareChangesByVault服务方法(两步查询,避免跨库 JOIN)GET /api/notes/share-changes路由since=0时返回fullRefreshRequired: true,客户端需走/share-paths全量拉取配套插件端 PR
此接口为 Obsidian 插件端分享状态指示器功能的服务端依赖,配套 PR:haierkeys/obsidian-fast-note-sync
Test plan
GET /api/notes/share-changes?vault=xxx&since=0,确认返回fullRefreshRequired: trueGET /api/notes/share-changes?vault=xxx&since=<之前的时间戳>,确认added中包含新分享路径removed中包含已取消路径🤖 Generated with Claude Code