We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
rails_admin_controller?
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:
ApplicationController
def is_rails_admin_controller? respond_to?(:rails_admin_controller?, true) && rails_admin_controller? end
The text was updated successfully, but these errors were encountered:
I'm having the same problem. I fixed it with a kind of dirty implementation but it works:
def is_rails_admin_controller? (self.class.to_s =~ /RailsAdmin::/) == 0 end
Sorry, something went wrong.
ffa30e0
No branches or pull requests
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:The text was updated successfully, but these errors were encountered: