This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-03-08 23:56:18 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V2::MediaController < Api::V1::MediaController
|
|
|
|
def create
|
|
|
|
@media_attachment = current_account.media_attachments.create!({ delay_processing: true }.merge(media_attachment_params))
|
2022-11-01 15:27:58 +01:00
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: @media_attachment.not_processed? ? 202 : 200
|
2020-03-08 23:56:18 +01:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
|
|
|
render json: file_type_error, status: 422
|
|
|
|
rescue Paperclip::Error
|
|
|
|
render json: processing_error, status: 500
|
|
|
|
end
|
|
|
|
end
|