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

12 lines
180 B
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
module Extended
def matches?(_subject, _user)
raise NotImplementedError
end
end
end
end
end