BigW Consortium Gitlab

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

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

        def icon
          'icon_status_created'
        end
16 17

        def favicon
Shinya Maeda committed
18
          'favicon_status_created'
19
        end
20 21 22 23
      end
    end
  end
end