()
| 13 | } |
| 14 | |
| 15 | func (v *tenantView) AsTableRow() []string { |
| 16 | activeText := "" |
| 17 | if v.Active { |
| 18 | activeText = ansi.Green("→") |
| 19 | } |
| 20 | |
| 21 | return []string{ |
| 22 | activeText, |
| 23 | v.Name, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func (v *tenantView) Object() interface{} { |
| 28 | return v.raw |