MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / browseServerDirectories

Function browseServerDirectories

apps/web/src/bridge/http-bridge.ts:356–361  ·  view source on GitHub ↗
(path = '')

Source from the content-addressed store, hash-verified

354}
355
356function browseServerDirectories(path = ''): Promise<DirectoryBrowseResult> {
357 const query = path ? `?path=${encodeURIComponent(path)}` : ''
358 return jsonRequest<DirectoryBrowseResult>(`/fs/browse${query}`).catch((err) =>
359 wrapRouteUpgradeError('/fs/browse', err)
360 )
361}
362
363// --------------------------------------------------------------------
364// Note listing / reading / writing

Callers

nothing calls this directly

Calls 2

jsonRequestFunction · 0.85
wrapRouteUpgradeErrorFunction · 0.85

Tested by

no test coverage detected