(users *management.User)
| 1034 | } |
| 1035 | |
| 1036 | func (c *cli) getUserConnection(users *management.User) []string { |
| 1037 | var res []string |
| 1038 | for _, i := range users.Identities { |
| 1039 | res = append(res, i.GetConnection()) |
| 1040 | } |
| 1041 | return res |
| 1042 | } |
| 1043 | |
| 1044 | // This is a workaround to get the requires_username field nested inside Options field. |
| 1045 | func (c *cli) getConnReqUsername(ctx context.Context, s string) *bool { |
no test coverage detected