debian-mirror-gitlab/app/presenters/commit_presenter.rb
2019-09-30 21:07:59 +05:30

20 lines
428 B
Ruby

# frozen_string_literal: true
class CommitPresenter < Gitlab::View::Presenter::Delegated
include GlobalID::Identification
presents :commit
def status_for(ref)
can?(current_user, :read_commit_status, commit.project) && commit.status(ref)
end
def any_pipelines?
can?(current_user, :read_pipeline, commit.project) && commit.pipelines.any?
end
def web_url
Gitlab::UrlBuilder.new(commit).url
end
end