I want to generate scaffold with a custom namespace but I want it to use an existing model/table.
If I generate a scaffold like this it generate scaffold with a custom namespace but use a new table admin_locations :
rails generate scaffold Admin::Location
Is there a way to do the same thing but using the existing Location model and locations table ?
Admin::Locations#index
....` – Nino Apr 24 '18 at 20:05