(owner: Owner)
| 1494 | const readOwners: readonly Owner[] = input.owner.subject == null ? ["org"] : ["user", "org"]; |
| 1495 | |
| 1496 | const ownerSubject = (owner: Owner): { owner: Owner; subject: string } | null => { |
| 1497 | if (owner === "org") return { owner: "org", subject: ORG_SUBJECT }; |
| 1498 | if (input.owner.subject == null) return null; |
| 1499 | return { owner: "user", subject: String(input.owner.subject) }; |
| 1500 | }; |
| 1501 | |
| 1502 | const tenant = String(input.owner.tenant); |
| 1503 |
no outgoing calls
no test coverage detected