MLH-Fellowship/orientation-project-js

Page for adding a new Experience

开放

#2 创建于 2023年5月18日

 (0 条评论) (0 个反应) (0 位负责人)JavaScript (0 个派生)auto 404
enhancementgood first issuetemplate

仓库指标

星标
 (0 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

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

  • title
  • company
  • start_date
  • end_date
  • description
  • 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/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
}

贡献者指南