-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Match back and front end user signup #342
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rmwerner18 , thanks for working on this! I made a comment on changing one field, but otherwise it looks good to me. Approved once you apply the recommended change and remove the comment on the controller.
const citiesArray = ['Seattle', 'Detroit', 'Chicago', 'Nashville']; | ||
return citiesArray.map((city) => { | ||
return <MenuItem value={city}>{city}</MenuItem>; | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rmwerner18 , for now, let's make this field a simple input element similar to zipcode. This will simplify our work.
<Select | ||
labelId="city-select" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make this a regular input instead, so we don't have to provide a city for each state.
-Made bio, zip code, and interests inputs functional and included data in post request
-Fixed a bug that was happening with the city/state select inputs
-Post request to create user works (successfully creates user) but still throws an error for some reason
-Profile_image_url is not included in post request, currently image input is a file upload and not a text field for a url. This will probably require some more steps in order to store file as url
-Added interests from frontend to category seeds in backend, so that these interests can be saved
-Commented out email_verified check when logging in, to allow us to work around that for now