If you use the namespace route like the one below :
map.namespace :user do |user|
user.resources :invitations
end
Make sure you have the links like the following;
<% form_for([:user,@invitations]) do |f| %>
Don’t try with;
<% form_for([@user,@invitation]) do |f| %>