We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// @router [Get,Post] swagger文件的同一个path下,不同的method下会产生相同的operationID https://github.com/beego/bee/blob/develop/generate/swaggergen/g_docs.go#L571
The text was updated successfully, but these errors were encountered:
I can not get your point, can you give more details or give a demo?
Sorry, something went wrong.
// @router / [Get,Post] func (c *DfsFileController) ListDfsFiles() {}
"/dfs-files/": { "get": { "tags": [ "dfs-files" ], "description": "List dfs files in a directory", "operationId": "ListDfsFiles", "consumes": [ "application/json" ], "produces": [ "application/json" ], "parameters": [ ... ], "responses": { "200": { ... }, "500": { ... } } }, "post": { "tags": [ "dfs-files" ], "description": "List dfs files in a directory", "operationId": "ListDfsFiles", "consumes": [ "application/json" ], "produces": [ "application/json" ], "parameters": [ ... ], "responses": { "200": { ... }, "500": { ... } } } },
feat: add aliyun captcha (beego#833)
a0e11cc
* feat: add aliyun captcha provider * Rename App key * fix typo * Rename HMACSHA1 & Reused clientId2 and clientSecret2 * Update ProviderEditPage.js * Delete unused import Co-authored-by: Gucheng <85475922+nomeguy@users.noreply.github.com>
No branches or pull requests
// @router [Get,Post]
swagger文件的同一个path下,不同的method下会产生相同的operationID
https://github.com/beego/bee/blob/develop/generate/swaggergen/g_docs.go#L571
The text was updated successfully, but these errors were encountered: