Hi!
I'm trying to setup a structure in which I want to visualize the "FEATURES" with below all the users with the time they registered on that feature-ID
E.g,
ARTABC-123 (Feature-id)
- Worklogauthor: Alex 1h
- Worklogauthor: Frank: 2h
- Worklogauthor: David: 3h
Does anyone know how to realize this?
Hello @Alex Agn
You can try a formula like this:
worklogs.map(concat($.author, ": ", jira_hours($.timespent), "h"))
But it might be more convenient to use a different approach for showing how much time each user worked on an issue. You can find the example of such formula on this page (check for the 'Get a detailed description of the tasks users spent time on' example in the 'Users' section).
I hope this helps. If you need further assistance or have other questions about Structure, please reach out to us directly at our support portal.
Best regards,
Stepan
Tempo (the Structure app vendor)
if you are willing to use the REST API, its a matter of using the GET endpoint for an issue that includes the worklog. So for example:
https://jira.atlassian.com/rest/api/2/issue/JRACLOUD-31024/worklog
tells you this (when you visualize the resulting JSON
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.