AvailableTargets returns the list of code agent IDs that support the given kind, sorted. Used by the UI to populate the install-target picker.
(kind string)
| 504 | // AvailableTargets returns the list of code agent IDs that support the given |
| 505 | // kind, sorted. Used by the UI to populate the install-target picker. |
| 506 | func AvailableTargets(kind string) []string { |
| 507 | return entities.SupportedApps(entities.Kind(kind)) |
| 508 | } |
| 509 | |
| 510 | // SearchPaged runs a paginated search and decorates each item with the list of |
| 511 | // code agents it is currently installed to. |
no test coverage detected