(org: string)
| 137 | } |
| 138 | |
| 139 | getOrgUsers(org: string): Record<string, OrgRole> | null { |
| 140 | const normalizedOrg = org.startsWith('@') ? org : `@${org}` |
| 141 | return this.state.orgs[normalizedOrg]?.users ?? null |
| 142 | } |
| 143 | |
| 144 | getOrgTeams(org: string): string[] | null { |
| 145 | const normalizedOrg = org.startsWith('@') ? org : `@${org}` |
no outgoing calls
no test coverage detected