I am trying to write a plugin for Redmine. The plugin will allow users to create Code Review Requests.
When the user creates / updates / deletes a request I want to add the event to history.
Anyone here familiar with creating a Journal object and attaching it to an issue?
I tried doing (using the console)
is = Issue.find(1234)
jr = Journal.new(:journalized => is)
jr.save
However jr.save returns false.
Please let me know what would be a correct way to do this?
Thanks!
codeissue = @review.issue issue.journals << Journal.new(:journalized => issue, :notes => "Created review request for #{@review.group.lastname}", :user_id => @review.user.id)code– AAK May 4 '12 at 19:19issue.save? – jperelli Dec 17 '12 at 19:01