blob: cd41969fad27427c580f2f33f30d67ef694afbf1 (
plain)
1
2
3
4
5
6
|
class CallSerializer < ActiveModel::Serializer
embed :uuids, :include => true
attributes :start_stamp, :destination, :callstate, :b_callstate, :b_caller_id_number, :sip_account_id
attribute :uuid, :key => :id
end
|