Neo Workspace for local deployment

This commit is contained in:
mr
2024-10-15 10:56:39 +02:00
parent 64c1ee11f5
commit 64552a611e
7 changed files with 203 additions and 181 deletions

View File

@@ -15,6 +15,66 @@
},
"basePath": "/oc/",
"paths": {
"/": {
"get": {
"tags": [
"oc-workspace/controllersWorkspaceController"
],
"description": "find workspace by id\n\u003cbr\u003e",
"operationId": "WorkspaceController.GetAll",
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
},
"post": {
"tags": [
"oc-workspace/controllersWorkspaceController"
],
"description": "create workspace\n\u003cbr\u003e",
"operationId": "WorkspaceController.Create",
"parameters": [
{
"in": "body",
"name": "data",
"description": "body for data content (Json format)",
"required": true,
"schema": {
"$ref": "#/definitions/json"
}
}
],
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
}
},
"/search/{search}": {
"get": {
"tags": [
"oc-workspace/controllersWorkspaceController"
],
"description": "search workspace\n\u003cbr\u003e",
"operationId": "WorkspaceController.Search",
"parameters": [
{
"in": "path",
"name": "search",
"description": "the word search you want to get",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
}
},
"/version/": {
"get": {
"tags": [
@@ -43,70 +103,10 @@
}
}
},
"/workspace/": {
"/{id}": {
"get": {
"tags": [
"workspace"
],
"description": "find workspace by id\n\u003cbr\u003e",
"operationId": "WorkspaceController.GetAll",
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
},
"post": {
"tags": [
"workspace"
],
"description": "create workspace\n\u003cbr\u003e",
"operationId": "WorkspaceController.Create",
"parameters": [
{
"in": "body",
"name": "data",
"description": "body for data content (Json format)",
"required": true,
"schema": {
"$ref": "#/definitions/json"
}
}
],
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
}
},
"/workspace/search/{search}": {
"get": {
"tags": [
"workspace"
],
"description": "search workspace\n\u003cbr\u003e",
"operationId": "WorkspaceController.Search",
"parameters": [
{
"in": "path",
"name": "search",
"description": "the word search you want to get",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "{workspace} models.workspace"
}
}
}
},
"/workspace/{id}": {
"get": {
"tags": [
"workspace"
"oc-workspace/controllersWorkspaceController"
],
"description": "find workflow by id\n\u003cbr\u003e",
"operationId": "WorkspaceController.Get",
@@ -127,7 +127,7 @@
},
"put": {
"tags": [
"workspace"
"oc-workspace/controllersWorkspaceController"
],
"description": "create workspaces\n\u003cbr\u003e",
"operationId": "WorkspaceController.Update",
@@ -157,7 +157,7 @@
},
"delete": {
"tags": [
"workspace"
"oc-workspace/controllersWorkspaceController"
],
"description": "delete the workspace\n\u003cbr\u003e",
"operationId": "WorkspaceController.Delete",
@@ -190,7 +190,7 @@
},
"tags": [
{
"name": "workspace",
"name": "oc-workspace/controllersWorkspaceController",
"description": "Operations about workspace\n"
},
{