I am trying to filter on a boolean value in an ng-repeat.
List of unregistered users:
Unregistered Users
Create a method in the controller which returns true or false based on the logic you need and specify that function in the filter.
Something like this:
$scope.isRegistered = function(item) { return item.registered; }; Unregistered Users {{user.name}}