demarches-normaliennes/app/services/falsify_opendata_service.rb
2024-08-22 09:26:48 +02:00

17 lines
349 B
Ruby

# frozen_string_literal: true
class FalsifyOpendataService
def self.call(lines)
errors = []
lines.each do |line|
id = line["id"]
procedure = Procedure.find_by(id: id)
if procedure
procedure.update(opendata: false)
else
errors << "Procedure #{id} introuvable"
end
end
errors
end
end