mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 19:21:13 +01:00
73540ffe6b
* Move ApiController to Api/BaseController * API controllers inherit from Api::BaseController * Add coverage for various error cases in api/base controller
15 lines
409 B
Ruby
15 lines
409 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
|
|
uri = URI.parse(request.url)
|
|
uri.host = URI.parse(Rails.configuration.x.streaming_api_base_url).host
|
|
redirect_to uri.to_s, status: 301
|
|
else
|
|
raise ActiveRecord::RecordNotFound
|
|
end
|
|
end
|
|
end
|