Skip to content

Commit

Permalink
Merge pull request #35533 from code-dot-org/afe-optional-fields
Browse files Browse the repository at this point in the history
AFE: Make optional location parameters optional
  • Loading branch information
islemaster committed Jun 29, 2020
2 parents 9bbfb87 + 8c61ced commit 71d122a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ def submit
lastName
email
schoolId
street1
city
state
zip
inspirationKit
csta
awsEducate
Expand All @@ -42,8 +38,12 @@ def submit

PERMITTED_PARAMETERS = [
*REQUIRED_PARAMETERS,
'street1',
'street2',
'street3'
'street3',
'city',
'state',
'zip'
]

def submit_params
Expand Down

0 comments on commit 71d122a

Please sign in to comment.