(owner: Owner)
| 1133 | const readOwners: readonly Owner[] = input.owner.subject == null ? ["org"] : ["user", "org"]; |
| 1134 | |
| 1135 | const ownerSubject = (owner: Owner): { owner: Owner; subject: string } | null => { |
| 1136 | if (owner === "org") return { owner: "org", subject: ORG_SUBJECT }; |
| 1137 | if (input.owner.subject == null) return null; |
| 1138 | return { owner: "user", subject: String(input.owner.subject) }; |
| 1139 | }; |
| 1140 | |
| 1141 | const tenant = String(input.owner.tenant); |
| 1142 |
no outgoing calls
no test coverage detected