X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/acfbc091982fbf74baeef7d16ff7d84f63c84951..651c6b0d4c3cae766385d47d5d7043c8d80d9437:/app/controllers/reports_controller.rb?ds=sidebyside diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index 808726819..30cb9da7c 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -28,7 +28,8 @@ class ReportsController < ApplicationController redirect_to helpers.reportable_url(@report.issue.reportable), :notice => t(".successful_report") else - redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t(".provide_details") + flash[:notice] = t(".provide_details") + render :action => "new" end end @@ -52,12 +53,15 @@ class ReportsController < ApplicationController def default_assigned_role case issue_params[:reportable_type] - when "Note" then "moderator" - when "User" then case report_params[:category] - when "vandal" then "moderator" - else "administrator" - end - else "administrator" + when "Note" + "moderator" + when "User" + case report_params[:category] + when "vandal" then "moderator" + else "administrator" + end + else + "administrator" end end end