Created
August 20, 2019 17:03
-
-
Save picsoung/5a23f5993acbdf93d236313201b7f5e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { form_response } = req.body | |
const {answers} = form_response | |
let arm_field = answers.find((a) => a.field.ref === 'arm_choice') | |
let selected_arm = arm_field.choice.label | |
let username_field = answers.find((a) => a.field.ref === 'username') | |
let username = username_field.text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment