refactor(logic): add comments

This commit is contained in:
simon lehericey 2022-09-20 15:37:00 +02:00
parent fcb9b55bc4
commit ab42b27176

View file

@ -9,10 +9,10 @@ class Logic::ChampValue < Logic::Term
)
CHAMP_VALUE_TYPE = {
boolean: :boolean,
number: :number,
enum: :enum,
enums: :enums,
boolean: :boolean, # from yes_no or checkbox champ
number: :number, # from integer or decimal number champ
enum: :enum, # a choice from a dropdownlist
enums: :enums, # multiple choice from a dropdownlist (multipledropdownlist)
empty: :empty,
unmanaged: :unmanaged
}