(imageURL, altText, text string)
| 490 | for _, h := range b.movedFeatures { |
| 491 | if h.Moved == nil { |
| 492 | continue |
| 493 | } |
| 494 | featureURL := fmt.Sprintf("%s/features/%s", b.frontendBaseURL, h.FeatureID) |
| 495 | noLongerStr := "" |
| 496 | if h.Moved.To.QueryMatch == workertypes.QueryMatchNoMatch { |
| 497 | noLongerStr = " :warning: _(No longer matches)_" |
| 498 | } |
| 499 | txt := fmt.Sprintf("*Moved/Renamed* \nRenamed from %s to <%s|%s>%s", |
| 500 | h.Moved.From.Name, featureURL, h.Moved.To.Name, noLongerStr) |
no outgoing calls
no test coverage detected