support-foo/web

View on GitHub
app/serializers/attachment_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AttachmentSerializer < BaseSerializer
  attributes :url, :file_size, :content_type

  def url
    object.file.url
  end

end