I really like this syntax, though I forgot what it was called
@notifications.delete_if{|x| x == cookie[0].to_i
but I would like to do something similar for find
<% @managers = User.find{|x| x.isAdmin == true} %>
any ideas?
currently my solution tells me it can't find the object without an id, probably because I'm trying to treat active record like an array...