discourse/app/serializers/upload_thumbnail_serializer.rb
David Battersby 16acba6cf8
DEV: serialize image upload thumbnail (#29276)
Since we recently blocked accidental serialization of AR models, we are getting a 500 error in some cases with thumbnails. We can fix this by serializing the thumbnail, previously we just returned a raw OptimizedImage object.

Thumbnails are now attached to the serializer in core, therefore we no longer need to use add_to_serializer within the chat plugin to use thumbnails within chat message uploads.
2024-10-18 12:55:14 +04:00

6 lines
166 B
Ruby

# frozen_string_literal: true
class UploadThumbnailSerializer < ApplicationSerializer
attributes :id, :upload_id, :width, :height, :url, :extension, :filesize
end