MCPcopy Create free account
hub / github.com/auth0/auth0-cli / AsTableRow

Method AsTableRow

internal/display/users.go:41–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

39}
40
41func (v *userView) AsTableRow() []string {
42 if v.Connection == management.ConnectionStrategySMS {
43 return []string{
44 ansi.Faint(v.UserID),
45 v.PhoneNumber,
46 v.Connection,
47 }
48 }
49
50 return []string{
51 ansi.Faint(v.UserID),
52 v.Email,
53 v.Connection,
54 }
55}
56
57func (v *userView) AsTableRowString() string {
58 row := v.AsTableRow()

Callers 1

AsTableRowStringMethod · 0.95

Calls 1

FaintFunction · 0.92

Tested by

no test coverage detected