]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/reports_controller.rb
Remove new issue notifications for now
[rails.git] / app / controllers / reports_controller.rb
index 6c62deb30d677db8ae6ac55850c11900685fe996..b5740d146bf9557e390465026d8615b79a425445 100644 (file)
@@ -8,8 +8,6 @@ class ReportsController < ApplicationController
     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
 
@@ -20,7 +18,6 @@ class ReportsController < ApplicationController
     if @report.save
       @report.issue.save
       # FIXME: reopen issue if necessary
-      # FIXME: new issue notification (or via model observer)
       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")
@@ -34,6 +31,6 @@ class ReportsController < ApplicationController
   end
 
   def report_params
-    params[:report].permit(:details)
+    params[:report].permit(:details, :category)
   end
 end