5186d6faa1
Enables frozen string for all remaining files in lib/gitlab/ci. Partially addresses #47424.
25 lines
400 B
Ruby
25 lines
400 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Status
|
|
class Manual < Status::Core
|
|
def text
|
|
s_('CiStatusText|manual')
|
|
end
|
|
|
|
def label
|
|
s_('CiStatusLabel|manual action')
|
|
end
|
|
|
|
def icon
|
|
'status_manual'
|
|
end
|
|
|
|
def favicon
|
|
'favicon_status_manual'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|