MCPcopy Index your code
hub / github.com/ether/etherpad / find

Method find

src/node/security/OIDCAdapter.ts:66–71  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

64 }
65
66 find(id: string): Promise<AdapterPayload | void | undefined> {
67 if (storage.has(this.key(id))) {
68 return Promise.resolve(storage.get(this.key(id)) as AdapterPayload);
69 }
70 return Promise.resolve(undefined);
71 }
72
73 findByUserCode(userCode: string) {
74 const id = storage.get(userCodeKeyFor(userCode)) as string;

Callers 15

findByUserCodeMethod · 0.95
pad.jsFile · 0.80
goToLineNumberFunction · 0.80
animateStepFunction · 0.80
replaceUserRowContentsFunction · 0.80
updateRowFunction · 0.80
pad_userlist.tsFile · 0.80
forceReconnectionFunction · 0.80

Calls 2

keyMethod · 0.95
getMethod · 0.80

Tested by 1

renderedAuthorContrastFunction · 0.64