blob: af735e1c18b67e75c099b22abd322dc69b4ddc5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module Clusters
class IntegrationPresenter < Gitlab::View::Presenter::Delegated
presents ::Clusters::Integrations::Prometheus, as: :integration
def application_type
integration.class.name.demodulize.underscore
end
end
end
|