MLH-Fellowship/orientation-project-js

Page for adding a new Skill

開放

#4 建立於 2023年5月18日

 (0 則留言) (0 個反應) (0 位負責人)JavaScript (0 個分叉)auto 404
enhancementgood first issuetemplate

倉庫指標

星標
 (0 顆星)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

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

  • name
  • proficiency
  • logo

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
}

貢獻者指南