metamaps--metamaps/app/serializers/api/v2/attachment_serializer.rb
Devin Howard 3b3cec9fcc rubocop
2018-02-05 21:43:10 -08:00

14 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