Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Store resume filename in registration object
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun-S-Nair committed Sep 23, 2020
1 parent ed4b081 commit 78b571e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
13 changes: 10 additions & 3 deletions config/dev_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@
"graduationYear",
"gender",
"race",
"programmingYears"
"programmingYears",
"resumeName"
],

"REGISTRATION_DEFINITION": {
Expand Down Expand Up @@ -185,8 +186,6 @@
"validations": "",
"fields": []
},


{
"name": "school",
"type": "string",
Expand Down Expand Up @@ -225,6 +224,14 @@
"validations": "required,min=1,max=5",
"fields": []
},

{
"name": "resumeName",
"type": "string",
"validations": "",
"fields": []
},

{
"name": "hasInternship",
"type": "boolean",
Expand Down
9 changes: 8 additions & 1 deletion config/production_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@
"gender",
"interests",
"isBeginner",
"priorAttendance"
"priorAttendance",
"resumeName"
],

"REGISTRATION_DEFINITION": {
Expand Down Expand Up @@ -187,6 +188,12 @@
"validations": "",
"fields": []
},
{
"name": "resumeName",
"type": "string",
"validations": "",
"fields": []
},
{
"name": "isBeginner",
"type": "boolean",
Expand Down
6 changes: 6 additions & 0 deletions config/test_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@
"type": "int",
"validations": "required",
"fields": []
},
{
"name": "resumeName",
"type": "string",
"validations": "",
"fields": []
}
]
},
Expand Down

0 comments on commit 78b571e

Please sign in to comment.