mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
166dbaa752
ActiveModel is used in ActionPack for ActiveModel::Naming for a few, mostly optional aspects of ActionPack related to automatically converting an ActiveModel compliant object into a key for params and routing. It uses only three methods of ActiveModel (ActiveModel::Naming.route_key, ActiveModel::Naming.singular_route_key and ActiveModel::Naming.param_key).
12 lines
398 B
Ruby
12 lines
398 B
Ruby
module ActionController
|
|
module ModelNaming
|
|
# Converts the given object to an ActiveModel compliant one.
|
|
def convert_to_model(object)
|
|
object.respond_to?(:to_model) ? object.to_model : object
|
|
end
|
|
|
|
def model_name_from_record_or_class(record_or_class)
|
|
(record_or_class.is_a?(Class) ? record_or_class : convert_to_model(record_or_class).class).model_name
|
|
end
|
|
end
|
|
end
|