debian-mirror-gitlab/lib/gitlab/ci/status/bridge/common.rb
2019-03-02 22:35:43 +05:30

26 lines
384 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Bridge
module Common
def label
subject.description
end
def has_details?
false
end
def has_action?
false
end
def details_path
end
end
end
end
end
end