我使用Rails_admin并且我已经集成了CKEditor,可以上传图像和其他文件。
现在在仪表板上显示了我的新模型:
它还在我的模型文件夹中创建了3个ruby文件。
所有这些都有CRUD动作。我想删除create
和update
个动作,只留下show
和delete
,因为它们将通过CKEditor
本身添加。
在编写rails_admin.rb
的{{1}}中,我添加了此内容:
config.actions do
当我启动我的应用程序时,仍然有 edit do
except %w(Asset AttachmentFile Picture)
end
和create
个动作。
为什么?
答案 0 :(得分:1)
我找到了解决方案。在我的rails_admin.rb
文件中,我需要写这个:
new do
except %w(Ckeditor::Asset Ckeditor::AttachmentFile Ckeditor::Picture)
end
edit do
except %w(Ckeditor::Asset Ckeditor::AttachmentFile Ckeditor::Picture)
end