]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/reports_controller.rb
Handle current_user being both an admin and a moderator for building user list
[rails.git] / app / controllers / reports_controller.rb
index 781c3af66b87021405710388ec7c92f8a2d6a4f8..5d0442731733453d845790cc362ac8d9b2bfe15e 100644 (file)
@@ -17,8 +17,7 @@ class ReportsController < ApplicationController
 
     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")