Reopen issues if necessary when creating a report.

This commit is contained in:
Andy Allan 2018-01-21 11:18:24 +00:00
parent e23ff48dce
commit 3a386f185c
2 changed files with 22 additions and 1 deletions

View file

@ -17,7 +17,7 @@ class ReportsController < ApplicationController
if @report.save
@report.issue.save
# FIXME: reopen issue if necessary
@report.issue.reopen! unless @report.issue.open?
redirect_to root_path, :notice => t("issues.create.successful_report")
else
redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t("issues.create.provide_details")