gitlab-org--gitlab-foss/lib/gitlab/ci/status/core.rb

64 lines
1.1 KiB
Ruby
Raw Normal View History

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?
2016-12-08 08:51:36 +00:00
false
end
def details_path
raise NotImplementedError
end
def has_action?
2016-12-08 08:51:36 +00:00
false
end
def action_icon
raise NotImplementedError
end
def action_path
raise NotImplementedError
end
2016-12-08 08:51:36 +00:00
def action_method
raise NotImplementedError
end
2016-12-08 17:18:30 +00:00
def action_title
raise NotImplementedError
end
end
end
end
end