X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a20e28809f5ca1e3f3579faeaf118fff3ecc4994..696bbd169b210bd0ab29a045d8952c9839a09690:/app/controllers/reports_controller.rb diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index 5d0442731..21c717581 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -5,9 +5,11 @@ class ReportsController < ApplicationController before_action :require_user def new - if create_new_report_params.present? + if required_new_report_params_present? @report = Report.new @report.issue = Issue.find_or_initialize_by(create_new_report_params) + else + redirect_to root_path, :notice => t("reports.new.missing_params") end end @@ -18,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 @@ -26,6 +28,10 @@ class ReportsController < ApplicationController private + def required_new_report_params_present? + create_new_report_params['reportable_id'].present? && create_new_report_params['reportable_type'].present? + end + def create_new_report_params params.permit(:reportable_id, :reportable_type) end