New Login Design (#1675)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2022-03-07 17:56:42 -08:00
committed by GitHub
parent 5e42f96eaf
commit 8e21039ef1
34 changed files with 3018 additions and 175 deletions

View File

@@ -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": {