metamaps--metamaps/app/serializers/api/v2/attachment_serializer.rb
Devin Howard f10af09164 rubocop
2018-11-17 06:59:20 -08:00

15 lines
300 B
Ruby

# frozen_string_literal: true
module Api
module V2
class AttachmentSerializer < ApplicationSerializer
attributes :id,
:file,
:attachable_type,
:attachable_id,
:created_at,
:updated_at
end
end
end