]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/reports_controller.rb
Create a report_link helper, and use text instead of a flag icon
[rails.git] / app / controllers / reports_controller.rb
index 4d2220a26c21541bdb667d6e9538b4303a754232..8a1bed50848785510dadb6e902e0441430ef7caf 100644 (file)
@@ -20,7 +20,7 @@ class ReportsController < ApplicationController
     if @report.save
       @report.issue.save
       @report.issue.reopen! unless @report.issue.open?
-      redirect_to root_path, :notice => t("issues.create.successful_report")
+      redirect_to helpers.reportable_url(@report.issue.reportable), :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
@@ -29,7 +29,7 @@ class ReportsController < ApplicationController
   private
 
   def required_new_report_params_present?
-    create_new_report_params['reportable_id'].present? && create_new_report_params['reportable_type'].present?
+    create_new_report_params["reportable_id"].present? && create_new_report_params["reportable_type"].present?
   end
 
   def create_new_report_params