debian-mirror-gitlab/app/presenters/environment_presenter.rb
2021-11-18 22:05:49 +05:30

12 lines
246 B
Ruby

# frozen_string_literal: true
class EnvironmentPresenter < Gitlab::View::Presenter::Delegated
include ActionView::Helpers::UrlHelper
presents ::Environment, as: :environment
def path
project_environment_path(project, self)
end
end