mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 22:36:50 +00:00
13 lines
192 B
Ruby
13 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
# @api private
|
|
class HasManyReflection < Reflection
|
|
def collection?
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|