mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
234 B
Ruby
12 lines
234 B
Ruby
class Api::ImageSerializer < ActiveModel::Serializer
|
|
attributes :id, :alt, :small_url, :large_url
|
|
|
|
def small_url
|
|
object.attachment.url(:small, false)
|
|
end
|
|
|
|
def large_url
|
|
object.attachment.url(:large, false)
|
|
end
|
|
end
|