Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
I found the answer. I just added notes to the existing journal. code issue = @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:19
then do you make issue.save? – jperelli Dec 17 '12 at 19:01
@jperelli No I did not have to call save on the issue model instance. I am using Redmine1.3.3 – AAK Jan 11 at 5:17

1 Answer

To create issue history line on behalf of user(as a comment):

writing line by line, to show howto. You can combine in 1 line all this code

issue = Issue.find(1234)
user = User.current
journal = issue.init_journal(user, 'My text for history line')
journal.save
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.