mirror of
https://github.com/beego/bee.git
synced 2024-11-22 20:20:55 +00:00
fix the bug that fail to generate swagger doc's summary
This commit is contained in:
parent
2ccbbb47e4
commit
36d86d924a
@ -455,11 +455,11 @@ func parserComments(comments *ast.CommentGroup, funcName, controllerName, pkgpat
|
|||||||
HTTPMethod = "GET"
|
HTTPMethod = "GET"
|
||||||
}
|
}
|
||||||
} else if strings.HasPrefix(t, "@Title") {
|
} else if strings.HasPrefix(t, "@Title") {
|
||||||
opts.OperationID = controllerName + "." + strings.TrimSpace(t[len("@Title"):])
|
title := strings.TrimSpace(t[len("@Title"):])
|
||||||
|
opts.OperationID = controllerName + "." + title
|
||||||
|
opts.Summary = title
|
||||||
} else if strings.HasPrefix(t, "@Description") {
|
} else if strings.HasPrefix(t, "@Description") {
|
||||||
opts.Description = strings.TrimSpace(t[len("@Description"):])
|
opts.Description = strings.TrimSpace(t[len("@Description"):])
|
||||||
} else if strings.HasPrefix(t, "@Summary") {
|
|
||||||
opts.Summary = strings.TrimSpace(t[len("@Summary"):])
|
|
||||||
} else if strings.HasPrefix(t, "@Success") {
|
} else if strings.HasPrefix(t, "@Success") {
|
||||||
ss := strings.TrimSpace(t[len("@Success"):])
|
ss := strings.TrimSpace(t[len("@Success"):])
|
||||||
rs := swagger.Response{}
|
rs := swagger.Response{}
|
||||||
|
Loading…
Reference in New Issue
Block a user