aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/model_naming.rb
blob: 5eab00cd1a01147c7cc404515e40f8f11fce5702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
module ActionView
  module ModelNaming #:nodoc:
    # 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)
      convert_to_model(record_or_class).model_name
    end
  end
end