Filter issues in current sprint

Issue #84 resolved
Algemeen - PrismaNote Software created an issue

The ‘your issues’ list in VS Code shows an complete list of all issues which are attached to the user, but an option to only see the issues which are in the current sprint would be very nice.

Also ordering on the same order what Jira does would be nice so we can pick up the issues in the order that the PO wants 🙂

Comments (3)

  1. Jonathan Doklovic Account Deactivated

    The open and your issues tress are not configurable.

    That being said, you can add Custom JQL queries in the Atlassian Settings page to do whatever you want. These will show up in a Custom JQL tree.

    sprint in currentSprints()
    

    might work for you.

    Let me know how it goes

  2. Algemeen - PrismaNote Software reporter

    Aha, changed the query too:

    sprint in openSprints() and assignee = currentUser() and status in (Open, Rejected, "In Progress")  ORDER BY rank ASC
    

    This gives me a list of my issues ordered by the rank and hides the issues which are on ‘testing’ and ‘completed’.

    Thanks!

  3. Log in to comment