| 14 | } |
| 15 | |
| 16 | type OrgUsersUIPrinter struct { |
| 17 | Roles []models.Role |
| 18 | RoleDisplayNames map[models.Role]string |
| 19 | UserLister func(orgGUID string, role models.Role) ([]models.UserFields, error) |
| 20 | UI terminal.UI |
| 21 | } |
| 22 | |
| 23 | func (p *OrgUsersUIPrinter) PrintUsers(guid string, username string) { |
| 24 | for _, role := range p.Roles { |
nothing calls this directly
no outgoing calls
no test coverage detected