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
I have a HelpCategory resource:
ActiveAdmin.register HelpCategory, namespace: :admin do reorderable
And nested HelpAnswer resource:
ActiveAdmin.register HelpAnswer, namespace: :admin do belongs_to :help_category reorderable
And when i get into /admin/help_categories/1/help_answers page I getting this error:
/admin/help_categories/1/help_answers
undefined method `reorder_admin_help_answer_path'
Simply, it should use reorder_admin_help_category_help_answer_path, but it doesn't
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a HelpCategory resource:
And nested HelpAnswer resource:
And when i get into
/admin/help_categories/1/help_answers
page I getting this error:Simply, it should use reorder_admin_help_category_help_answer_path, but it doesn't
The text was updated successfully, but these errors were encountered: