Skip to content
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

Merged
merged 8 commits into from
May 26, 2023

Conversation

rmwerner18
Copy link
Contributor

-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

@rmwerner18 rmwerner18 linked an issue May 18, 2023 that may be closed by this pull request
@rmwerner18 rmwerner18 requested a review from esteban-gs May 18, 2023 19:21
Copy link
Contributor

@esteban-gs esteban-gs left a 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.

Comment on lines 93 to 96
const citiesArray = ['Seattle', 'Detroit', 'Chicago', 'Nashville'];
return citiesArray.map((city) => {
return <MenuItem value={city}>{city}</MenuItem>;
});
Copy link
Contributor

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"
Copy link
Contributor

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.

@rmwerner18 rmwerner18 merged commit 2f5ab87 into main May 26, 2023
@rmwerner18 rmwerner18 deleted the match-back-and-front-end-user-signup branch May 26, 2023 15:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Integrate Account changes to back end - User Sign up
2 participants