()
| 1028 | } |
| 1029 | |
| 1030 | func (p ProjectField) Options() []SingleSelectFieldOptions { |
| 1031 | if p.TypeName == "ProjectV2SingleSelectField" { |
| 1032 | var options []SingleSelectFieldOptions |
| 1033 | for _, o := range p.SingleSelectField.Options { |
| 1034 | options = append(options, SingleSelectFieldOptions{ |
| 1035 | ID: o.ID, |
| 1036 | Name: o.Name, |
| 1037 | }) |
| 1038 | } |
| 1039 | return options |
| 1040 | } |
| 1041 | return nil |
| 1042 | } |
| 1043 | |
| 1044 | func (p ProjectField) ExportData(_ []string) map[string]any { |
| 1045 | v := map[string]any{ |
no outgoing calls
no test coverage detected