2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
12 lines
295 B
Ruby
12 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ServiceHook < WebHook
|
|
belongs_to :service
|
|
validates :service, presence: true
|
|
|
|
# rubocop: disable CodeReuse/ServiceClass
|
|
def execute(data)
|
|
WebHookService.new(self, data, 'service_hook').execute
|
|
end
|
|
# rubocop: enable CodeReuse/ServiceClass
|
|
end
|