You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i've changed the my app to rails 4.2 to 5.2 so as_routes is not worked instead of that i put
resources :model, concerns: :active_scaffold
now it is showing the error as No concern named active_scaffold was found!
The text was updated successfully, but these errors were encountered:
Run rails g active_scaffold:install, it should add concerns definition to your routes. It may change your application.js and application.css manifests, check them.
Or just add concerns to your routes, at top of draw block:
i've changed the my app to rails 4.2 to 5.2 so
as_routes is not worked instead of that i put
resources :model, concerns: :active_scaffold
now it is showing the error as
No concern named active_scaffold was found!
The text was updated successfully, but these errors were encountered: