Rails ActiveAdmin 仅显示查看操作
Rails ActiveAdmin display only view action
我有索引的标准 ActiveAdmin table 视图。问题是如果涉及到 action
,我只想显示 View
。如下所示:
ActiveAdmin.register Conversation do
(...)
index do
column 'User email', :sendable
column :tag
column 'Category', :topic
column 'Last update', :updated_at
actions only: :show
end
end
actions only: :show
无效。有什么办法可以不使用 action_item
吗?
我认为这应该可行:
actions :all, except: [:edit, :update, :destroy]
如果没有,请告诉我。
我有索引的标准 ActiveAdmin table 视图。问题是如果涉及到 action
,我只想显示 View
。如下所示:
ActiveAdmin.register Conversation do
(...)
index do
column 'User email', :sendable
column :tag
column 'Category', :topic
column 'Last update', :updated_at
actions only: :show
end
end
actions only: :show
无效。有什么办法可以不使用 action_item
吗?
我认为这应该可行:
actions :all, except: [:edit, :update, :destroy]
如果没有,请告诉我。