summaryrefslogtreecommitdiff
path: root/app/presenters/environment_presenter.rb
blob: fe828fb9fd8993a4cc0ca93ffc2b7a76f8b8cf73 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class EnvironmentPresenter < Gitlab::View::Presenter::Delegated
  presents ::Environment, as: :environment

  def path
    project_environment_path(project, self)
  end
end