taskadapter / redmine-java-api

Redmine Java API
Apache License 2.0
269 stars 162 forks source link

Unable to delete assignee of an issue #325

Open stolp opened 5 years ago

stolp commented 5 years ago

I have tried several approaches for deleting an assignee of an issue.

issue.setAssigneeId(null);
issue.setAssigneeName(null);
issue.setAssigneeName("");

None of these attempts resets the assignee in the remote Redmine issue.

What am I missing here? Is this a bug?

I am using com.taskadapter:redmine-java-api:4.0.0.preview.1

rimwerda1996 commented 5 years ago

hello, i'm trying to use redmine api in my application, can you confirm if this code works correctly?

stolp commented 5 years ago

Yes, for my purposes this library yields good results - your mileage may vary.

Please don't hijack issue threads.

eticco commented 5 years ago

I had the same problem yesterday. You can find the explanation and a possible workaround in #306.

Another approach could be to extend Redmine, but I know nothing about RubyOnRails.

stolp commented 5 years ago

@ettico Thanks a lot for the pointer! I am going to fork and check this out.