debian-mirror-gitlab/app/controllers/projects/environments/prometheus_api_controller.rb
2022-07-29 14:03:07 +02:00

20 lines
436 B
Ruby

# frozen_string_literal: true
class Projects::Environments::PrometheusApiController < Projects::ApplicationController
include Metrics::Dashboard::PrometheusApiProxy
before_action :proxyable
feature_category :metrics
urgency :low
private
def proxyable
@proxyable ||= project.environments.find(params[:id])
end
def proxy_variable_substitution_service
::Prometheus::ProxyVariableSubstitutionService
end
end