2021-06-15 14:09:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Checks
|
|
|
|
class BaseBulkChecker < BaseChecker
|
|
|
|
attr_reader :changes_access
|
2022-02-28 13:14:03 -05:00
|
|
|
|
2021-06-15 14:09:57 -04:00
|
|
|
delegate(*ChangesAccess::ATTRIBUTES, to: :changes_access)
|
|
|
|
|
|
|
|
def initialize(changes_access)
|
|
|
|
@changes_access = changes_access
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate!
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|