Class: Gitlab::Ci::Status::Pending
- Inherits:
-
Core
- Object
- Core
- Gitlab::Ci::Status::Pending
show all
- Defined in:
- lib/gitlab/ci/status/pending.rb
Instance Attribute Summary
Attributes inherited from Core
#subject, #user
Instance Method Summary
collapse
Methods inherited from Core
#action_button_title, #action_icon, #action_method, #action_path, #action_title, #badge_tooltip, #confirmation_message, #group, #has_action?, #has_details?, #id, #illustration, #initialize, #name, #status_tooltip
Methods included from Allowable
#can?, #can_all?, #can_any?
Methods included from Routing
includes_helpers, redirect_legacy_paths, url_helpers
Instance Method Details
#details_path ⇒ Object
23
24
25
|
# File 'lib/gitlab/ci/status/pending.rb', line 23
def details_path
nil
end
|
#favicon ⇒ Object
19
20
21
|
# File 'lib/gitlab/ci/status/pending.rb', line 19
def favicon
'favicon_status_pending'
end
|
#icon ⇒ Object
15
16
17
|
# File 'lib/gitlab/ci/status/pending.rb', line 15
def icon
'status_pending'
end
|
#label ⇒ Object
11
12
13
|
# File 'lib/gitlab/ci/status/pending.rb', line 11
def label
s_('CiStatusLabel|pending')
end
|
#text ⇒ Object
7
8
9
|
# File 'lib/gitlab/ci/status/pending.rb', line 7
def text
s_('CiStatusText|Pending')
end
|