(logins []string)
| 202 | } |
| 203 | |
| 204 | func (r *SpecialAssigneeReplacer) ReplaceSlice(logins []string) ([]string, error) { |
| 205 | replaced, err := r.meReplacer.ReplaceSlice(logins) |
| 206 | if err != nil { |
| 207 | return nil, err |
| 208 | } |
| 209 | if r.actorAssignees { |
| 210 | replaced = r.copilotReplacer.ReplaceSlice(replaced) |
| 211 | } |
| 212 | return replaced, nil |
| 213 | } |
| 214 | |
| 215 | // ProjectIds returns a slice containing IDs of projects v1 that the issue or a PR has to be linked to. |
| 216 | func (e Editable) ProjectIds() (*[]string, error) { |
no outgoing calls
no test coverage detected