I have a rails model that is nested:
# app/models/frontend/item.rb
class Frontend::Item < Item
end
When I call
form_for(@frontend_item)
It tries to go to the '/frontend/items' path.
Is there a way to make it go to '/items' instead (without the inherited '/frontend')