MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / _updateRecentPageIds

Function _updateRecentPageIds

apps/app-server/src/trpc/api/pages/bump.ts:149–160  ·  view source on GitHub ↗
(input: {
  userId: string;
  pageId: string;
  dataAbstraction: DataAbstraction<typeof dataHashes>;
})

Source from the content-addressed store, hash-verified

147}
148
149async function _updateRecentPageIds(input: {
150 userId: string;
151 pageId: string;
152 dataAbstraction: DataAbstraction<typeof dataHashes>;
153}) {
154 await bumpRecentItem({
155 userId: input.userId,
156 itemType: 'page',
157 itemId: input.pageId,
158 dataAbstraction: input.dataAbstraction,
159 });
160}
161async function _updateRecentGroupIds(input: {
162 userId: string;
163 groupId: string;

Callers 1

bumpFunction · 0.85

Calls 1

bumpRecentItemFunction · 0.90

Tested by

no test coverage detected