New Login Design (#1675)
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
@@ -2235,6 +2235,30 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"/check-version": {
|
||||
"get": {
|
||||
"security": [],
|
||||
"tags": [
|
||||
"UserAPI"
|
||||
],
|
||||
"summary": "Checks the current MinIO version against the latest",
|
||||
"operationId": "CheckMinIOVersion",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/checkVersionResponse"
|
||||
}
|
||||
},
|
||||
"default": {
|
||||
"description": "Generic error response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/error"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/configs": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -4550,6 +4574,17 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"checkVersionResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"current_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"latest_version": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configDescription": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -8696,6 +8731,30 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"/check-version": {
|
||||
"get": {
|
||||
"security": [],
|
||||
"tags": [
|
||||
"UserAPI"
|
||||
],
|
||||
"summary": "Checks the current MinIO version against the latest",
|
||||
"operationId": "CheckMinIOVersion",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/checkVersionResponse"
|
||||
}
|
||||
},
|
||||
"default": {
|
||||
"description": "Generic error response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/error"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/configs": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -11137,6 +11196,17 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"checkVersionResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"current_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"latest_version": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configDescription": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user