From 525e6e5dc87d4d354888493c1669f2fff270ca8b Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Tue, 9 Jan 2024 12:52:45 +0100 Subject: [PATCH] docs: remove empty page (#11511) --- coderd/apidoc/docs.go | 2 +- coderd/apidoc/swagger.json | 2 +- docs/api/applications enterprise.md | 1 - docs/manifest.json | 4 ---- enterprise/coderd/workspaceproxy.go | 2 +- 5 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 docs/api/applications enterprise.md diff --git a/coderd/apidoc/docs.go b/coderd/apidoc/docs.go index eefbeb628b..100607bf66 100644 --- a/coderd/apidoc/docs.go +++ b/coderd/apidoc/docs.go @@ -174,7 +174,7 @@ const docTemplate = `{ "application/json" ], "tags": [ - "Applications Enterprise" + "Enterprise" ], "summary": "Issue signed app token for reconnecting PTY", "operationId": "issue-signed-app-token-for-reconnecting-pty", diff --git a/coderd/apidoc/swagger.json b/coderd/apidoc/swagger.json index 595ad23b69..ad44650928 100644 --- a/coderd/apidoc/swagger.json +++ b/coderd/apidoc/swagger.json @@ -141,7 +141,7 @@ ], "consumes": ["application/json"], "produces": ["application/json"], - "tags": ["Applications Enterprise"], + "tags": ["Enterprise"], "summary": "Issue signed app token for reconnecting PTY", "operationId": "issue-signed-app-token-for-reconnecting-pty", "parameters": [ diff --git a/docs/api/applications enterprise.md b/docs/api/applications enterprise.md deleted file mode 100644 index ceb96d41a4..0000000000 --- a/docs/api/applications enterprise.md +++ /dev/null @@ -1 +0,0 @@ -# Applications Enterprise diff --git a/docs/manifest.json b/docs/manifest.json index bef7dc89f5..2f68e6f020 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -516,10 +516,6 @@ "title": "Applications", "path": "./api/applications.md" }, - { - "title": "Applications Enterprise", - "path": "./api/applications enterprise.md" - }, { "title": "Audit", "path": "./api/audit.md" diff --git a/enterprise/coderd/workspaceproxy.go b/enterprise/coderd/workspaceproxy.go index 4004421bd3..b2e7b02538 100644 --- a/enterprise/coderd/workspaceproxy.go +++ b/enterprise/coderd/workspaceproxy.go @@ -809,7 +809,7 @@ func (api *API) workspaceProxyDeregister(rw http.ResponseWriter, r *http.Request // @Summary Issue signed app token for reconnecting PTY // @ID issue-signed-app-token-for-reconnecting-pty // @Security CoderSessionToken -// @Tags Applications Enterprise +// @Tags Enterprise // @Accept json // @Produce json // @Param request body codersdk.IssueReconnectingPTYSignedTokenRequest true "Issue reconnecting PTY signed token request"