roughed in environment sparklines backend (#327)

This commit is contained in:
Michael Quigley
2023-05-12 11:57:34 -04:00
parent 6259b62a8a
commit 2655eaefc0
16 changed files with 908 additions and 51 deletions

View File

@@ -90,6 +90,30 @@ func init() {
}
}
},
"/detail/account": {
"get": {
"security": [
{
"key": []
}
],
"tags": [
"metadata"
],
"operationId": "getAccountDetail",
"responses": {
"200": {
"description": "ok",
"schema": {
"$ref": "#/definitions/environments"
}
},
"500": {
"description": "internal server error"
}
}
}
},
"/detail/environment/{envZId}": {
"get": {
"security": [
@@ -1065,8 +1089,8 @@ func init() {
"environment": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
"activity": {
"$ref": "#/definitions/sparkData"
},
"address": {
"type": "string"
@@ -1537,6 +1561,30 @@ func init() {
}
}
},
"/detail/account": {
"get": {
"security": [
{
"key": []
}
],
"tags": [
"metadata"
],
"operationId": "getAccountDetail",
"responses": {
"200": {
"description": "ok",
"schema": {
"$ref": "#/definitions/environments"
}
},
"500": {
"description": "internal server error"
}
}
}
},
"/detail/environment/{envZId}": {
"get": {
"security": [
@@ -2512,8 +2560,8 @@ func init() {
"environment": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
"activity": {
"$ref": "#/definitions/sparkData"
},
"address": {
"type": "string"