(option IssueSingleSelectFieldOption)
| 457 | } |
| 458 | |
| 459 | func issueFieldOptionPriority(option IssueSingleSelectFieldOption) (int, bool) { |
| 460 | if option.Priority == nil { |
| 461 | return 0, false |
| 462 | } |
| 463 | return *option.Priority, true |
| 464 | } |
| 465 | |
| 466 | func uiGetReviewers(ctx context.Context, deps ToolDependencies, args map[string]any, owner string) (*mcp.CallToolResult, any, error) { |
| 467 | repo, err := RequiredParam[string](args, "repo") |
no outgoing calls
no test coverage detected