@new_comment = IssueComment.new(:issue => @issue)
end
- # Status Transistions
+ # Status Transitions
def resolve
if @issue.resolve
+ @issue.updated_by = current_user.id
@issue.save!
redirect_to @issue, :notice => t(".resolved")
else
def find_issue
@issue = Issue.visible_to(current_user).find(params[:id])
rescue ActiveRecord::RecordNotFound
- head :not_found
+ redirect_to :controller => "errors", :action => "not_found"
end
end