gioboa / jira-plugin

Jira plugin for VsCode
https://marketplace.visualstudio.com/items?itemName=gioboa.jira-plugin
MIT License
266 stars 41 forks source link

feat: Subtask as working issue #139

Closed micharaze closed 4 years ago

micharaze commented 4 years ago

Is your feature request related to a problem? Please describe. When I want to select a working Issue to log my working time it is not possible to select a Subtask. The Jira Plugin only lists Stories and Tasks from current sprint.

Describe the solution you'd like It would be helpful when it is possible to select also Subtasks as a working issue.

gioboa commented 4 years ago

Hi, I retrieve working issue by Jira jql. Can you give me an example for retrieve sub-tasks? Thanks :+1:

micharaze commented 4 years ago

I am using in Jira a Scrum board. I am usually creating Sub-tasks in a story. When I am using the following JQL command in the Jira JQL search then I also get the Sub-tasks listed.

status = "In Progress"

I don't know how your plugin is searching for Issues in progress. With the following command I am able to find all Sub-tasks in progress only:

issuetype = Sub-task and status = "In Progress"

I hope this helps.

gioboa commented 4 years ago

The plugin search for project/status/assignee Here the code. :smile_cat: I will check how to include sub-tasks :+1:

micharaze commented 4 years ago

Ah, know I see the problem. Created Sub-tasks were not automatically assigned to me so I was not able to see them. Assigning the Sub-Task to me solved my problem.

Thanks! 😃