if create_new_report_params.present?
@report = Report.new
@report.issue = Issue.find_or_initialize_by(create_new_report_params)
- path = "issues.report_strings." + @report.issue.reportable.class.name.to_s
- @report_strings_yaml = t(path)
end
end
if @report.save
@report.issue.save
- # FIXME: reopen issue if necessary
- # FIXME: new issue notification (or via model observer)
+ @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")
end
def report_params
- params[:report].permit(:details)
+ params[:report].permit(:details, :category)
end
end