我的客户(非技术人员)问我是否可以在提交后更改ActiveAdmin表单以重定向到索引而不是show-item页面(假设没有表单错误)。
这可能吗?我该怎么做?
答案 0 :(得分:2)
嗯,这比我想象的容易得多。
对于我的Articles
模型,
ActiveAdmin.register Article do
...
controller do
def create
create! { admin_articles_url }
end
def update
update! { admin_articles_url }
end
end
...
end
就是这样!
这是由Active Admin使用的inherited_resources
gem实现的。我的代码更改实际上就是该项目的自述文件。