1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module Gitlab
module Ci
module Status
# Base abstract class fore core status
#
class Core
include Gitlab::Routing
include Gitlab::Allowable
attr_reader :subject, :user
def initialize(subject, user)
@subject = subject
@user = user
end
def icon
raise NotImplementedError
end
def favicon
raise NotImplementedError
end
def label
raise NotImplementedError
end
def group
self.class.name.demodulize.underscore
end
def has_details?
false
end
def details_path
raise NotImplementedError
end
def has_action?
false
end
def action_icon
raise NotImplementedError
end
def action_path
raise NotImplementedError
end
def action_method
raise NotImplementedError
end
def action_title
raise NotImplementedError
end
end
end
end
end