BigW Consortium Gitlab

pending.rb 269 Bytes
Newer Older
1 2 3 4
module Gitlab
  module Ci
    module Status
      class Pending < Status::Core
5 6 7 8
        def text
          'pending'
        end

9 10 11 12 13 14 15
        def label
          'pending'
        end

        def icon
          'icon_status_pending'
        end
16 17 18 19
      end
    end
  end
end