X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/effb1b7f4170bb7244c4dfffcbe6134fe00e2bc4..cba08bb454a0e3571cfc3e858dc2b2817e7b7538:/app/controllers/reports_controller.rb diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index 6c62deb30..b5740d146 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -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