demarches-normaliennes/app/components/editable_champ/siret_component.rb

18 lines
321 B
Ruby
Raw Normal View History

class EditableChamp::SiretComponent < EditableChamp::EditableChampBaseComponent
def dsfr_input_classname
'fr-input'
end
def hint_id
dom_id(@champ, :siret_info)
end
def hintable?
true
end
def update_path
champs_siret_path(@champ.dossier, @champ.stable_id, row_id: @champ.row_id)
end
2022-08-12 10:45:04 +02:00
end