MCPcopy Index your code
hub / github.com/simstudioai/sim / workItemExternalId

Function workItemExternalId

apps/sim/connectors/azure-devops/azure-devops.ts:169–171  ·  view source on GitHub ↗

* Encodes an external ID that combines a discriminator with its identifier, * e.g. `wiki:{wikiId}:{pagePath}` or `wi:{id}`.

(id: number)

Source from the content-addressed store, hash-verified

167 * e.g. `wiki:{wikiId}:{pagePath}` or `wi:{id}`.
168 */
169function workItemExternalId(id: number): string {
170 return `wi:${id}`
171}
172
173function wikiPageExternalId(wikiId: string, pagePath: string): string {
174 return `wiki:${wikiId}:${pagePath}`

Callers 1

workItemToDocumentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected