在Active Admin中禁用CSV下载 [英] Disable CSV downloads in Active Admin

查看:70
本文介绍了在Active Admin中禁用CSV下载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Active Admin gem,我想隐藏或删除每个模型的索引页面上的链接,以允许用户下载CSV,XML或JSON格式的数据。

I am using the Active Admin gem and I would like to hide or remove the links on the index page of each model allowing users to download data as CSV, XML or JSON. Is there any way to do this?

推荐答案

现在有一个选项:download_links 上的索引方法,因此您可以根据需要省略下载链接。

There is now an option :download_links on the index method, so you omit the download links if you want.

例如:

ActiveAdmin.register Post do
  index :download_links => false do
    # whatever
  end
end

这篇关于在Active Admin中禁用CSV下载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆