MCPcopy Create free account
hub / github.com/simstudioai/sim / ownerDisplay

Function ownerDisplay

apps/sim/connectors/granola/granola.ts:173–176  ·  view source on GitHub ↗

* Resolves an owner's display name, falling back to email, for tag mapping.

(owner?: GranolaUser)

Source from the content-addressed store, hash-verified

171 * Resolves an owner's display name, falling back to email, for tag mapping.
172 */
173function ownerDisplay(owner?: GranolaUser): string | undefined {
174 if (!owner) return undefined
175 return owner.name?.trim() || owner.email?.trim() || undefined
176}
177
178/**
179 * Collects attendee display names (falling back to email) for tag mapping.

Callers 2

noteSummaryToStubFunction · 0.85
granola.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected