I am customizing Rails Admin : https://github.com/sferik/rails_admin , i need to disable/hide \"Add new\" option for some model.
I use the following to achieve this on a specific model. Hopefully, this helps:
config.actions do new do except ['Some Model'] end end