demarches-normaliennes/app/models/champs/annuaire_education_champ.rb

29 lines
941 B
Ruby
Raw Normal View History

2021-01-14 17:29:57 +01:00
# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# data :jsonb
# fetch_external_data_exceptions :string is an Array
# private :boolean default(FALSE), not null
# row :integer
# type :string
# value :string
# created_at :datetime
# updated_at :datetime
# dossier_id :integer
# etablissement_id :integer
# external_id :string
# parent_id :bigint
# type_de_champ_id :integer
2021-01-14 17:29:57 +01:00
#
class Champs::AnnuaireEducationChamp < Champs::TextChamp
2021-02-09 12:35:23 +01:00
def fetch_external_data?
true
2021-01-14 17:29:57 +01:00
end
2021-02-09 12:35:23 +01:00
def fetch_external_data
2021-02-19 11:29:08 +01:00
APIEducation::AnnuaireEducationAdapter.new(external_id).to_params
2021-01-14 17:29:57 +01:00
end
end