in my projetct i have a list of players, i called them atletas, in the view i do something like this:
<div class="form-group" ng-repeat="atleta in atletas">
<input type="checkbox" ng-model="selected[equipaData.atletas]" name="vehicle" value="Bike">{{atleta.nome}}<br>
<input type="hidden" name="escondido" value="selected[atleta._id]"><br>
</div>
so evertyme when i click the submit that is in the form above, did not mentioned here, i call a function on the controller, and when i do that i want to pass just all the atletas that are checked, the entire object, how can i do that?