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
Running rails generate administrate:install more than once will add extra admin namespace blocks to config/routes.rb. Probably a low priority thing, but people using the generate command to just "reset" their work in progress might run into this.
The text was updated successfully, but these errors were encountered:
Yeah same stuff here, whenever i run a migration i like to update my dashboard automatically too. But i have to remove this every time
namespace :admin do
DashboardManifest::DASHBOARDS.each do |dashboard_resource|
resources dashboard_resource
end
root controller: DashboardManifest::ROOT_DASHBOARD, action: :index
end
Running
rails generate administrate:install
more than once will add extra admin namespace blocks toconfig/routes.rb
. Probably a low priority thing, but people using the generate command to just "reset" their work in progress might run into this.The text was updated successfully, but these errors were encountered: