23 lines
560 B
Ruby
23 lines
560 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UploadSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:url,
|
|
:original_filename,
|
|
:filesize,
|
|
:width,
|
|
:height,
|
|
:thumbnail_width,
|
|
:thumbnail_height,
|
|
:extension,
|
|
:short_url,
|
|
:short_path,
|
|
:retain_hours,
|
|
:human_filesize
|
|
|
|
def url
|
|
return object.url if !object.secure || !SiteSetting.secure_media?
|
|
UrlHelper.cook_url(object.url, secure: object.secure)
|
|
end
|
|
end
|