debian-mirror-gitlab/lib/gitlab/checks/base_bulk_checker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
372 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Gitlab
module Checks
class BaseBulkChecker < BaseChecker
attr_reader :changes_access
2022-05-07 20:08:51 +05:30
2021-09-04 01:27:46 +05:30
delegate(*ChangesAccess::ATTRIBUTES, to: :changes_access)
def initialize(changes_access)
@changes_access = changes_access
end
def validate!
raise NotImplementedError
end
end
end
end