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

        def icon
          'icon_status_success'
        end
      end
    end
  end
end