summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/group/common.rb
blob: 0b5ea0712cafd3707e8498fd57b3142b10afe5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Group
        module Common
          def has_details?
            false
          end

          def details_path
            nil
          end

          def has_action?
            false
          end
        end
      end
    end
  end
end