(scope: string, team: string)
| 147 | } |
| 148 | |
| 149 | getTeamUsers(scope: string, team: string): string[] | null { |
| 150 | const normalizedScope = scope.startsWith('@') ? scope : `@${scope}` |
| 151 | const org = this.state.orgs[normalizedScope] |
| 152 | if (!org) return null |
| 153 | return org.teamMembers[team] ?? null |
| 154 | } |
| 155 | |
| 156 | // -- Package data -- |
| 157 |
no outgoing calls
no test coverage detected