I have the following:
= select :client, :id, User.all.map {|u| [u.username, u.id]}, include_blank: "Add a client by username"
I'd like to exclude all records from User.all that match current_user.manager_users
. The point is so that the select box doesn't show users that are already added to the manager_users array which is a has_many
collection.