tempo-api-python-client icon indicating copy to clipboard operation
tempo-api-python-client copied to clipboard

"key" json parameters removed

Open maxdd opened this issue 10 months ago • 1 comments

Is there a reason why the "key" json field has been removed from the api?

 for wl in worklogs:
        if wl['author']['accountId'] == tempo_user:
              issue_key = wl['issue']['key']

Is it possible to restore it back?

maxdd avatar Jan 31 '25 14:01 maxdd

In the mean time my solution is to pass through jira

issue_key = jira.issue(wl['issue']['id']).key

maxdd avatar Jan 31 '25 14:01 maxdd