72da56aaa5
Similar to #34047 and #29327
20 lines
396 B
Ruby
20 lines
396 B
Ruby
module Gitlab
|
|
module Middleware
|
|
class ReadOnly
|
|
API_VERSIONS = (3..4)
|
|
|
|
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
|