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
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