mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-25 11:41:34 +00:00
Adds special keyword 'hide' for masking built-in nodeinfo defaults
This commit is contained in:
parent
e65910806c
commit
60549cfa09
@ -108,9 +108,14 @@ func (m *nodeinfo) setNodeInfo(given interface{}) error {
|
|||||||
if nodeinfomap, ok := given.(map[string]interface{}); ok {
|
if nodeinfomap, ok := given.(map[string]interface{}); ok {
|
||||||
for key, value := range nodeinfomap {
|
for key, value := range nodeinfomap {
|
||||||
if _, ok := newnodeinfo[key]; ok {
|
if _, ok := newnodeinfo[key]; ok {
|
||||||
|
if value == "hide" {
|
||||||
|
delete(newnodeinfo, key)
|
||||||
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
newnodeinfo[key] = value
|
if value != "hide" {
|
||||||
|
newnodeinfo[key] = value
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if newjson, err := json.Marshal(newnodeinfo); err == nil {
|
if newjson, err := json.Marshal(newnodeinfo); err == nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user