Open
Description
I found this in the documentation for filtering issues
issues = redmine.issue.filter(
project_id='vacation',
subproject_id='!*',
created_on='><2012-03-01|2012-03-07',
sort='category:desc
)
I see that you have ><fromdate|todate
Is there a listing somewhere of all of the available operators
For my specific case I want to do an in
or or
operation such as
redmine.issue.filter(
project_id='vacation',
author_id='in5,6', # Not sure what to put here to do an IN or OR operation
)