The fix for #2023 apparently removed the rails_admin_controller? method. I didn't see an explanation for this. It was added back in #351.
Was there a reason for this? It broke my upgrade from 0.6.6 to 0.6.7.
FWIW, I've had this method in my ApplicationController, which I'll implement differently now:
def is_rails_admin_controller?
respond_to?(:rails_admin_controller?, true) && rails_admin_controller?
end
The fix for #2023 apparently removed the
rails_admin_controller?method. I didn't see an explanation for this. It was added back in #351.Was there a reason for this? It broke my upgrade from 0.6.6 to 0.6.7.
FWIW, I've had this method in my
ApplicationController, which I'll implement differently now: