-
-
Notifications
You must be signed in to change notification settings - Fork 474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How whe can get custom fields values? #417
Comments
Hi! Thank you for taking the time to create your first issue! Really cool to see you here for the first time. Please give us a bit of time to review it. |
The thing you're looking for is If you want to map the 'user friendly' name to the internal name, I recommend you use fields, _, err := jira.Client.Field.GetList()
if err != nil {
return fmt.Errorf("unable to get the list of fields: %w", err)
}
jira.fieldMapping = make(map[string]string)
for _, f := range fields {
if f.Custom {
jira.fieldMapping[f.Name] = f.ID
}
} |
Thanks for the example, as I try it, I let you know the results. Thanks a lot! |
Thanks for your help |
@erdvillegasxpt Would you be able to prepare a pull request to extend the docs? |
Sure, let me write the note and I'll send a PR |
Hey, I am very sorry that this issue has been open for a long time with no final solution. We work on this project in our spare time, and sometimes, other priorities take over. This is the typical open source dilemma. However, there is news: We are kicking off v2 of this library 🚀To provide visibility, we created the Road to v2 Milestone and calling for your feedback in #489 The development will take some time; however, I hope you can benefit from the changes. What does this mean for my issue?We will work on this issue indirectly. Final wordsThanks for using this library. |
Hi team,
Recently we are creating a custom app that consume JIRA data, whe need to get values trhought custom fields, can you help me with an example of how can I read the values from that fields.
I using thise example:
The text was updated successfully, but these errors were encountered: