Commit dcfdb3d7 authored by Eric's avatar Eric

[Update] fix web sftp

parent f6fae8e0
...@@ -2,14 +2,14 @@ package model ...@@ -2,14 +2,14 @@ package model
import "encoding/json" import "encoding/json"
type NodeTreeList []NodeTreeAsset type NodeTreeList []NodeTreeAsset
type NodeTreeAsset struct { type NodeTreeAsset struct {
ID string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Title string `json:"title"` Title string `json:"title"`
Pid string `json:"pId"`
IsParent bool `json:"isParent"`
Meta map[string]interface{} `json:"meta"` Meta map[string]interface{} `json:"meta"`
} }
......
...@@ -252,6 +252,9 @@ func (u *UserSftpConn) initial() { ...@@ -252,6 +252,9 @@ func (u *UserSftpConn) initial() {
u.Dirs = map[string]os.FileInfo{} u.Dirs = map[string]os.FileInfo{}
} }
for _, item := range nodeTrees { for _, item := range nodeTrees {
if item.Pid != "" {
continue
}
typeName, ok := item.Meta["type"].(string) typeName, ok := item.Meta["type"].(string)
if !ok { if !ok {
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment