You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: workspaces/backend/api/workspacekinds_handler.go
+4-4
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ type WorkspaceKindEnvelope Envelope[models.WorkspaceKind]
39
39
//
40
40
// @Summary Get workspace kind
41
41
// @Description Returns details of a specific workspace kind identified by its name. Workspace kinds define the available types of workspaces that can be created.
42
-
// @Tags workspace-kinds
42
+
// @Tags workspacekinds
43
43
// @Accept json
44
44
// @Produce json
45
45
// @Param name path string true "Name of the workspace kind" example(jupyterlab)
@@ -49,7 +49,7 @@ type WorkspaceKindEnvelope Envelope[models.WorkspaceKind]
49
49
// @Failure 403 {object} ErrorEnvelope "Forbidden. User does not have permission to access the workspace kind."
50
50
// @Failure 404 {object} ErrorEnvelope "Not Found. Workspace kind does not exist."
51
51
// @Failure 500 {object} ErrorEnvelope "Internal server error. An unexpected error occurred on the server."
@@ -94,14 +94,14 @@ func (a *App) GetWorkspaceKindHandler(w http.ResponseWriter, r *http.Request, ps
94
94
//
95
95
// @Summary List workspace kinds
96
96
// @Description Returns a list of all available workspace kinds. Workspace kinds define the different types of workspaces that can be created in the system.
97
-
// @Tags workspace-kinds
97
+
// @Tags workspacekinds
98
98
// @Accept json
99
99
// @Produce json
100
100
// @Success 200 {object} WorkspaceKindListEnvelope "Successful operation. Returns a list of all available workspace kinds."
101
101
// @Failure 401 {object} ErrorEnvelope "Unauthorized. Authentication is required."
102
102
// @Failure 403 {object} ErrorEnvelope "Forbidden. User does not have permission to list workspace kinds."
103
103
// @Failure 500 {object} ErrorEnvelope "Internal server error. An unexpected error occurred on the server."
0 commit comments