mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
22 lines
447 B
Ruby
22 lines
447 B
Ruby
require 'active_model/serializer/field'
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
# Holds all the data about an serializer link
|
|
#
|
|
# @example
|
|
# class PostSerializer < ActiveModel::Serializer
|
|
# link :callback, if: :internal? do
|
|
# object.callback_link
|
|
# end
|
|
#
|
|
# def internal?
|
|
# instance_options[:internal] == true
|
|
# end
|
|
# end
|
|
#
|
|
class Link < Field
|
|
end
|
|
end
|
|
end
|