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

63 lines
1.3 KiB
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
# Base abstract class fore core status
#
class Core
include Gitlab::Routing.url_helpers
include Ability::Allowable
attr_reader :subject, :user
def initialize(subject, user)
@subject = subject
@user = user
end
def icon
raise NotImplementedError
end
def label
raise NotImplementedError
end
# Deprecation warning: this method is here because we need to maintain
# backwards compatibility with legacy statuses. We often do something
# like "ci-status ci-status-#{status}" to set CSS class.
#
# `to_s` method should be renamed to `group` at some point, after
# phasing legacy satuses out.
#
def to_s
self.class.name.demodulize.downcase.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
end
end
end
end