11 lines
316 B
Ruby
11 lines
316 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Clusters
|
|
class IntegrationPresenter < Gitlab::View::Presenter::Delegated
|
|
presents ::Clusters::Integrations::Prometheus, ::Clusters::Integrations::ElasticStack, as: :integration
|
|
|
|
def application_type
|
|
integration.class.name.demodulize.underscore
|
|
end
|
|
end
|
|
end
|