2021-01-14 17:29:57 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: champs
|
|
|
|
#
|
2021-02-04 19:23:40 +01:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# data :jsonb
|
|
|
|
# fetch_external_data_exceptions :string is an Array
|
|
|
|
# private :boolean default(FALSE), not null
|
2021-10-20 17:26:09 +02:00
|
|
|
# rebased_at :datetime
|
2021-02-04 19:23:40 +01:00
|
|
|
# row :integer
|
|
|
|
# type :string
|
|
|
|
# value :string
|
2021-10-05 15:37:13 +02:00
|
|
|
# value_json :jsonb
|
2021-02-04 19:23:40 +01:00
|
|
|
# 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
|