MLH-Fellowship / orientation-project-js-24.FAL.A

Orientation Project (JavaScript for 24.FAL.A)
0 stars 7 forks source link

Page for adding a new Experience #11

Closed MLHProgram closed 1 month ago

MLHProgram commented 2 months ago

Add a page that allows users to add a new Experience which includes the following fields:

Collaborate with the fellows contributing to the Python project to understand how logos will be managed. For now, assume this is a string (URL to the image).

When this information is submitted, a POST request should be made to /resume/experience on the server in the following format:

{
    "title": "Software Developer",
    "company": "A Cooler Company",
    "start_date": "October 2022",    
    "end_date": "Present",
    "description": "Writing JavaScript Code",
    "logo": "example-logo.png",
}

The server will return a JSON with the position in the list in the following format:

{
"id": 1
}
larrytamnjong commented 1 month ago

I would like to take on this issue.

dannyl1u commented 1 month ago

Note: the backend implementation for this feature only requires the start_date and end_date be a string, thus no specific format is needed :)

See https://github.com/MLH-Fellowship/orientation-project-python-24.FAL.A/pull/40#discussion_r1769018883