MCPcopy Index your code
hub / github.com/rilldata/rill / toUsersTable

Function toUsersTable

cli/pkg/printer/resources.go:107–115  ·  view source on GitHub ↗
(users []*adminv1.User)

Source from the content-addressed store, hash-verified

105}
106
107func toUsersTable(users []*adminv1.User) []*user {
108 allUsers := make([]*user, 0, len(users))
109
110 for _, m := range users {
111 allUsers = append(allUsers, toUserRow(m))
112 }
113
114 return allUsers
115}
116
117func toUserRow(m *adminv1.User) *user {
118 return &user{

Callers 1

PrintUsersMethod · 0.85

Calls 1

toUserRowFunction · 0.85

Tested by

no test coverage detected