Skip to content

Commit ab80657

Browse files
committed
fix: wrong resp for create wip
1 parent 899193b commit ab80657

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

api/jiaozifs.gen.go

+16-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1372,6 +1372,12 @@ paths:
13721372
application/json:
13731373
schema:
13741374
$ref: "#/components/schemas/Wip"
1375+
201:
1376+
description: a new working in process created
1377+
content:
1378+
application/json:
1379+
schema:
1380+
$ref: "#/components/schemas/Wip"
13751381
400:
13761382
description: ValidationError
13771383
401:

controller/wip_ctl.go

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ func (wipCtl WipController) GetWip(ctx context.Context, w *api.JiaozifsResponse,
8585
}
8686
if isNew {
8787
w.JSON(wipToDto(wip), http.StatusCreated)
88+
return
8889
}
8990
w.JSON(wipToDto(wip))
9091
}

0 commit comments

Comments
 (0)