Fix deprecation warnings
This commit is contained in:
parent
a71b8af4d1
commit
bf851691bf
3 changed files with 3 additions and 3 deletions
|
@ -208,7 +208,7 @@ class ApplicationController < ActionController::Base
|
|||
report_error e.message, :bad_request
|
||||
rescue ActiveRecord::RecordInvalid => e
|
||||
message = "#{e.record.class} #{e.record.id}: "
|
||||
e.record.errors.each { |attr, msg| message << "#{attr}: #{msg} (#{e.record[attr].inspect})" }
|
||||
e.record.errors.each { |error| message << "#{error.attribute}: #{error.message} (#{e.record[error.attribute].inspect})" }
|
||||
report_error message, :bad_request
|
||||
rescue OSM::APIError => e
|
||||
report_error e.message, e.status
|
||||
|
|
|
@ -65,7 +65,7 @@ Rails.application.configure do
|
|||
config.middleware.use I18n::JS::Middleware
|
||||
|
||||
# Raises error for missing translations.
|
||||
# config.action_view.raise_on_missing_translations = true
|
||||
# config.i18n.raise_on_missing_translations = true
|
||||
|
||||
# Annotate rendered view with file names.
|
||||
# config.action_view.annotate_rendered_view_with_filenames = true
|
||||
|
|
|
@ -55,7 +55,7 @@ Rails.application.configure do
|
|||
config.middleware.use I18n::JS::Middleware
|
||||
|
||||
# Raises error for missing translations.
|
||||
config.action_view.raise_on_missing_translations = true
|
||||
config.i18n.raise_on_missing_translations = true
|
||||
|
||||
# Annotate rendered view with file names.
|
||||
# config.action_view.annotate_rendered_view_with_filenames = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue