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

Orientation Project (JavaScript for 24.FAL.B)
1 stars 11 forks source link

Page for adding a new Skill #9

Open MLHProgram opened 1 week ago

MLHProgram commented 1 week ago

Add a page that allows users to add a new Skill 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/skill on the server in the following format:

{
    "name": "JavaScript",
    "proficiency": "2-4 years",
    "logo": "example-logo.png"
}

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

{
"id": 1
}
dnhan1707 commented 3 days ago

I'll take this one