2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
39 lines
841 B
Ruby
39 lines
841 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Todos
|
|
module Destroy
|
|
class BaseService
|
|
def execute
|
|
return unless todos_to_remove?
|
|
|
|
without_authorized(todos).delete_all
|
|
end
|
|
|
|
private
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def without_authorized(items)
|
|
items.where('user_id NOT IN (?)', authorized_users)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def authorized_users
|
|
ProjectAuthorization.select(:user_id).where(project_id: project_ids)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
def todos
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def project_ids
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def todos_to_remove?
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|
|
end
|