gitlab-org--gitlab-foss/app/presenters/deployments/deployment_presenter.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
168 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Deployments
class DeploymentPresenter < Gitlab::View::Presenter::Delegated
presents ::Deployment, as: :deployment
end
end