mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
12 lines
253 B
Ruby
12 lines
253 B
Ruby
require 'active_support/core_ext/string/inflections'
|
|
|
|
module ActiveModel
|
|
module SerializerSupport
|
|
def active_model_serializer
|
|
"#{self.class.name}Serializer".safe_constantize
|
|
end
|
|
|
|
alias read_attribute_for_serialization send
|
|
end
|
|
end
|