0

Is there a way to use a (different) namespaces inside nested resources? For example, I have:

resources :users do
 resources :tags
end

and I'd like to place the tags controller inside controllers/common, while placing users controller inside controllers/user, with the equivalent for templates.

If I try this:

namespace :user do
 resources :users do
  namespace :common do
   resources :tags
  end 
 end
end

I'll get redundant route names:

user_common_tags, etc. But I want something like common_tags

1 Answer 1

2

This way you will have common_tags, and users_tags, both linking to the same controller.

resources :users do
  resources :tags
end

namespace :common do
  resources :tags
end
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.