354fdd317e
Change the behaviour of remotable concern. Previously, it would skip downloading an attachment if the stored remote URL is identical to the new one. Now it would not be skipped if the attachment is not actually currently stored by Paperclip.
22 lines
479 B
Ruby
22 lines
479 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::StreamingController < Api::BaseController
|
|
respond_to :json
|
|
|
|
def index
|
|
if Rails.configuration.x.streaming_api_base_url != request.host
|
|
redirect_to streaming_api_url, status: 301
|
|
else
|
|
not_found
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def streaming_api_url
|
|
Addressable::URI.parse(request.url).tap do |uri|
|
|
uri.host = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url).host
|
|
end.to_s
|
|
end
|
|
end
|