Hi there,
I'm trying to figure out how to select only a single column in conjunction with using with_permissions_to. It always selects all columns from all the tables involved in the authorization check. Does anyone know if this is possible?
Here is what I am trying:
MyObject.with_permissions_to(:read).select(:common_description)
However, if I remove the with_permissions_to(:read) call the single column select works as expected.
Thanks!