Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b269d53

Browse files
committed
make gen
1 parent 76a2d76 commit b269d53

File tree

5 files changed

+63
-2
lines changed

5 files changed

+63
-2
lines changed

coderd/apidoc/docs.go

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/coderdtest/swaggerparser.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@ func assertProduce(t *testing.T, comment SwaggerComment) {
352352
(comment.router == "/workspaceagents/me/startup" && comment.method == "post") ||
353353
(comment.router == "/workspaceagents/me/startup/logs" && comment.method == "patch") ||
354354
(comment.router == "/licenses/{id}" && comment.method == "delete") ||
355-
(comment.router == "/debug/coordinator" && comment.method == "get") {
355+
(comment.router == "/debug/coordinator" && comment.method == "get") ||
356+
(comment.router == "/debug/tailnet" && comment.method == "get") {
356357
return // Exception: HTTP 200 is returned without response entity
357358
}
358359

coderd/debug.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func (api *API) debugCoordinator(rw http.ResponseWriter, r *http.Request) {
2424
}
2525

2626
// @Summary Debug Info Tailnet
27-
// @ID debug-info-wireguard-coordinator
27+
// @ID debug-info-tailnet
2828
// @Security CoderSessionToken
2929
// @Produce text/html
3030
// @Tags Debug

docs/api/debug.md

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)