LoginSignup
6
8

More than 1 year has passed since last update.

ActiveAdmin にカスタムアクションを追加する。(idが必要な場合、必要ない場合)

Last updated at Posted at 2015-09-18

idが必要な場合は member_action を使う。

app/admin/example.rb
ActiveAdmin.register Example do
  member_action :action_name, method: :get do
  end

生成されるパス:
/admin/examples/:id/action_name

idが必要が必要ない場合は collection_action を使う。

app/admin/example.rb
ActiveAdmin.register Example do
  collection_action :action_name, method: :get do
  end

生成されるパス:
/admin/examples/action_name

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

メンター受付

6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8