TUN-3101: Tunnel list command should only show non-deleted, by default

This commit is contained in:
Adam Chalmers
2020-06-16 17:55:33 -05:00
parent 425554077f
commit b95b289a8c
2 changed files with 19 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ type Tunnel struct {
ID string `json:"id"`
Name string `json:"name"`
CreatedAt time.Time `json:"created_at"`
DeletedAt time.Time `json:"deleted_at"`
Connections []Connection `json:"connections"`
}