There is a good question here explaining how to correctly use ActiveAdmin with associations.
In my situation though I have a customer model has_many associated to a sales model and the sales model is pretty big. So when I try to view my customer page in ActiveAdmin the server is running a call for all sales so that (I am guessing) it can return those associated columns.
This is timing out my server (504 Gateway Time-out ngx_openresty/1.4.3.6).
Is there any way to say to ActiveAdmin to ignore an association for that view? Ie the index view. Once I get to the 'show' view and have isolated a customer it is ok to run the query on that customers sales but running all customers with all sales is not required on the index page.
Hope I have been clear.