(input teamMemberRemoveInput, res *async.LaunchEmptyResult)
| 144 | } |
| 145 | |
| 146 | func teamMemberRemoveOperationOutput(input teamMemberRemoveInput, res *async.LaunchEmptyResult) jsonOperationOutput { |
| 147 | return newJSONOperationOutput(input, []jsonOperationResult{ |
| 148 | newJSONOperationResult(teamMemberRemoveStatus(res), teamJSONKindTeamMember, input, teamMemberRemoveJSONFromDropbox(res)), |
| 149 | }, nil) |
| 150 | } |
| 151 | |
| 152 | func teamInfoJSONFromDropbox(info *team.TeamGetInfoResult) teamInfoJSON { |
| 153 | if info == nil { |
no test coverage detected