mirror of https://github.com/tootsuite/mastodon
Add media attachment description limit to instance API response (#33153)
parent
48ea7552dd
commit
0fcf227a92
|
@ -77,12 +77,13 @@ class REST::InstanceSerializer < ActiveModel::Serializer
|
|||
},
|
||||
|
||||
media_attachments: {
|
||||
supported_mime_types: MediaAttachment.supported_mime_types,
|
||||
image_size_limit: MediaAttachment::IMAGE_LIMIT,
|
||||
description_limit: MediaAttachment::MAX_DESCRIPTION_LENGTH,
|
||||
image_matrix_limit: Attachmentable::MAX_MATRIX_LIMIT,
|
||||
video_size_limit: MediaAttachment::VIDEO_LIMIT,
|
||||
image_size_limit: MediaAttachment::IMAGE_LIMIT,
|
||||
supported_mime_types: MediaAttachment.supported_mime_types,
|
||||
video_frame_rate_limit: MediaAttachment::MAX_VIDEO_FRAME_RATE,
|
||||
video_matrix_limit: MediaAttachment::MAX_VIDEO_MATRIX_LIMIT,
|
||||
video_size_limit: MediaAttachment::VIDEO_LIMIT,
|
||||
},
|
||||
|
||||
polls: {
|
||||
|
|
|
@ -55,6 +55,9 @@ RSpec.describe 'Instances' do
|
|||
max_characters: StatusLengthValidator::MAX_CHARS,
|
||||
max_media_attachments: Status::MEDIA_ATTACHMENTS_LIMIT
|
||||
),
|
||||
media_attachments: include(
|
||||
description_limit: MediaAttachment::MAX_DESCRIPTION_LENGTH
|
||||
),
|
||||
polls: include(
|
||||
max_options: PollValidator::MAX_OPTIONS
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue