Activeadmin: show_comments_in_menu config option gone without deprecation

Created on 16 Jun 2016  ·  3Comments  ·  Source: activeadmin/activeadmin

the config option for disabling admin comments in menu is working on v1.0.0.pre2 but crushing on master

would be great to have a deprecation message with alternatives.

ActiveAdmin.setup do |config|
  config.show_comments_in_menu = false
end

❤️ Thanks a lot guys/girls for active admin! - has saved me a lot of time

Most helpful comment

For anyone wondering, it has been changed for

ActiveAdmin.setup do |config|
  config.comments_menu = false
end 

See #4187

All 3 comments

i also run into this issue

For anyone wondering, it has been changed for

ActiveAdmin.setup do |config|
  config.comments_menu = false
end 

See #4187

We have change log entry for that

Was this page helpful?
0 / 5 - 0 ratings