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