X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/fcbccb6a441fb05ee92227dfa0cb90a2db60296c..8e21e4e80156a1fc29d7b283b254ff623ca844b6:/app/controllers/reports_controller.rb diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index 30cb9da7c..5c70d9704 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -3,9 +3,12 @@ class ReportsController < ApplicationController before_action :authorize_web before_action :set_locale + before_action :check_database_readable authorize_resource + before_action :check_database_writable, :only => [:new, :create] + def new if required_new_report_params_present? @report = Report.new @@ -28,7 +31,7 @@ class ReportsController < ApplicationController redirect_to helpers.reportable_url(@report.issue.reportable), :notice => t(".successful_report") else - flash[:notice] = t(".provide_details") + flash.now[:notice] = t(".provide_details") render :action => "new" end end