How to hide Add new option in Rails Admin

前端 未结 4 982
暖寄归人
暖寄归人 2021-02-05 19:02

I am customizing Rails Admin : https://github.com/sferik/rails_admin , i need to disable/hide \"Add new\" option for some model.

4条回答
  •  孤城傲影
    2021-02-05 19:37

    I use the following to achieve this on a specific model. Hopefully, this helps:

    config.actions do
      new do
        except ['Some Model']
      end
    end
    

提交回复
热议问题