Add feature hide-menu for embedded screens on Operator UI (#1604)

* Add feature hide-menu for embedded screens on Operator UI

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2022-02-21 21:42:18 -08:00
committed by GitHub
parent 28dcd19dd9
commit 56c4311a6b
27 changed files with 381 additions and 166 deletions

View File

@@ -5018,6 +5018,14 @@ func init() {
"accessKey": {
"type": "string"
},
"features": {
"type": "object",
"properties": {
"hide_menu": {
"type": "boolean"
}
}
},
"secretKey": {
"type": "string"
}
@@ -5467,6 +5475,10 @@ func init() {
},
"accountAccessKey": {
"type": "string"
},
"hm": {
"description": "Hide Console Menu",
"type": "boolean"
}
}
},
@@ -10422,6 +10434,14 @@ func init() {
}
}
},
"LoginRequestFeatures": {
"type": "object",
"properties": {
"hide_menu": {
"type": "boolean"
}
}
},
"SubnetRegTokenResponse": {
"type": "object",
"properties": {
@@ -11583,6 +11603,14 @@ func init() {
"accessKey": {
"type": "string"
},
"features": {
"type": "object",
"properties": {
"hide_menu": {
"type": "boolean"
}
}
},
"secretKey": {
"type": "string"
}
@@ -12032,6 +12060,10 @@ func init() {
},
"accountAccessKey": {
"type": "string"
},
"hm": {
"description": "Hide Console Menu",
"type": "boolean"
}
}
},