label 생성 - boostcamp-2020/IssueTracker-14 GitHub Wiki

Label 생성

메소드 경로 짧은 설명
POST api/label Label 생성

Request

body

{
    title: 'Backend',
    description: '백엔드'
    color: '#123456'
}

Response

status: 201

{
   message: 'success'
}