summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/core/pending.rb
blob: 05c9e41091be5c1384f5f4312aebcb9d19a00c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab::Ci
  module Status
    module Core
      class Pending < Core::Base
        def label
          'pending'
        end

        def icon
          'icon_status_pending'
        end
      end
    end
  end
end