| 13 | ) |
| 14 | |
| 15 | type userView struct { |
| 16 | UserID string |
| 17 | Email string |
| 18 | PhoneNumber string |
| 19 | Connection string |
| 20 | Username string |
| 21 | RequireUsername bool |
| 22 | raw interface{} |
| 23 | } |
| 24 | |
| 25 | func (v *userView) AsTableHeader() []string { |
| 26 | if v.Connection == management.ConnectionStrategySMS { |
nothing calls this directly
no outgoing calls
no test coverage detected