You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my organization doesn't have the in review status setup, so when I try and list my issues using jira ls it says no issues.
this is what the response from the api looks like this, with a status of 400:
i tested this inside my browser and got the following error. When i removed the in review status, it worked.
{
"errorMessages": [
"The value 'In Review' does not exist for the field 'status'."
],
"warningMessages": []
}
the jql sent over is:
assignee=currentUser() AND status in ("Open", "In Progress", "Reopened", "To Do", "In Review") order by key DESC
I was able to get around this by using a .filter directly inside the ls module on getAvailableStatuses - but I feel like if the api returns an error, something other than "No Issues" should be returned.
The text was updated successfully, but these errors were encountered:
my organization doesn't have the in review status setup, so when I try and list my issues using
jira ls
it says no issues.this is what the response from the api looks like this, with a status of 400:
i tested this inside my browser and got the following error. When i removed the in review status, it worked.
the jql sent over is:
assignee=currentUser() AND status in ("Open", "In Progress", "Reopened", "To Do", "In Review") order by key DESC
I was able to get around this by using a
.filter
directly inside thels
module ongetAvailableStatuses
- but I feel like if the api returns an error, something other than "No Issues" should be returned.The text was updated successfully, but these errors were encountered: