[#3356] Clarify naming
This commit is contained in:
parent
140a65cb36
commit
656061b21a
1 changed files with 2 additions and 2 deletions
|
@ -193,8 +193,8 @@ module TagsSubstitutionConcern
|
||||||
.inject(text) { |acc, (tags, data)| replace_tags_with_values_from_data(acc, tags, data) }
|
.inject(text) { |acc, (tags, data)| replace_tags_with_values_from_data(acc, tags, data) }
|
||||||
end
|
end
|
||||||
|
|
||||||
def replace_type_de_champ_tags(text, types_de_champ, dossier_champs)
|
def replace_type_de_champ_tags(text, tags, dossier_champs)
|
||||||
types_de_champ.inject(text) do |acc, tag|
|
tags.inject(text) do |acc, tag|
|
||||||
champ = dossier_champs
|
champ = dossier_champs
|
||||||
.detect { |dossier_champ| dossier_champ.libelle == tag[:libelle] }
|
.detect { |dossier_champ| dossier_champ.libelle == tag[:libelle] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue