Dan Y

Results 4 comments of Dan Y

Unfortunately there is no stack trace, just those warnings to stdout.

To give you a more concrete example: ``` ActiveAdmin.register Book do state_action :review do end end ``` ``` Warning: method `review` already defined in Admin::BooksController ```

This post explains the issue: https://github.com/activeadmin/activeadmin/issues/5316 However, the suggested solution does not work for me since some of my state_actions use `:confirm` e.g. ``` ActiveAdmin.register Book do state_action :review, confirm:...

Hi @macfanatic, I haven't found a work-around. These are just warnings printed to stderr and everything still works as intended so we are ignoring them for now... However I am...