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
|