22 lines
434 B
Ruby
22 lines
434 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Middleware
|
|
class ReadOnly
|
|
API_VERSIONS = (3..4).freeze
|
|
|
|
def self.internal_routes
|
|
@internal_routes ||=
|
|
API_VERSIONS.map { |version| "api/v#{version}/internal" }
|
|
end
|
|
|
|
def initialize(app)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
::Gitlab::Middleware::ReadOnly::Controller.new(@app, env).call
|
|
end
|
|
end
|
|
end
|
|
end
|