fix(coderd): update references to workspace's include_deleted query param (#25826)

fixes DEVEX-206
This commit is contained in:
Andrew Aquino
2026-06-04 09:12:45 -07:00
committed by GitHub
parent 61a35185cf
commit 6bd413163f
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ func (api *API) workspace(rw http.ResponseWriter, r *http.Request) {
}
if workspace.Deleted && !showDeleted {
httpapi.Write(ctx, rw, http.StatusGone, codersdk.Response{
Message: fmt.Sprintf("Workspace %q was deleted, you can view this workspace by specifying '?deleted=true' and trying again.", workspace.ID.String()),
Message: fmt.Sprintf("Workspace %q was deleted, you can view this workspace by specifying '?include_deleted=true' and trying again.", workspace.ID.String()),
})
return
}