(org: string)
| 142 | } |
| 143 | |
| 144 | getOrgTeams(org: string): string[] | null { |
| 145 | const normalizedOrg = org.startsWith('@') ? org : `@${org}` |
| 146 | return this.state.orgs[normalizedOrg]?.teams ?? null |
| 147 | } |
| 148 | |
| 149 | getTeamUsers(scope: string, team: string): string[] | null { |
| 150 | const normalizedScope = scope.startsWith('@') ? scope : `@${scope}` |
no outgoing calls
no test coverage detected