Browse Source

Update if statements

pull/2931/head
Kat 3 months ago
parent
commit
8c31adac44
  1. 4
      app/controllers/form_controller.rb

4
app/controllers/form_controller.rb

@ -155,7 +155,7 @@ private
next unless question_params
if %w[checkbox].include?(question.type)
if question.type == "checkbox"
question.answer_keys_without_dividers.each do |option|
result[option] = 1 if question_params.include?(option)
end
@ -347,7 +347,7 @@ private
end
def question_missing_response?(responses_for_page, question)
if %w[checkbox].include?(question.type)
if question.type == "checkbox"
answered = question.answer_keys_without_dividers.map do |option|
session["fields"][option] = @log[option] = params[@log.log_type][question.id].include?(option) ? 1 : 0
params[@log.log_type][question.id].exclude?(option)

Loading…
Cancel
Save