aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/record_identifier.rb
blob: 7b6a5bb25cf5e172eb95b38d83854a5d8444b29c (plain) (blame)
1
2
3
4
5
6
7
8
require 'active_support/deprecation'
require 'action_view/record_identifier'

module ActionController
  RecordIdentifier = ActionView::RecordIdentifier
  ActiveSupport::Deprecation.warn "ActionController::RecordIdentifier was renamed to ActionView::RecordIdentifier. " +
                                  "Please use it instead. ActionController::RecordIdentifier will be removed in Rails 4.1"
end